Disable Qodana bootstrap script to avoid shell parsing issues in CI
This commit is contained in:
parent
f0b786d740
commit
652567aa8b
|
|
@ -8,9 +8,9 @@ linter: qodana-jvm
|
||||||
profile:
|
profile:
|
||||||
name: qodana.recommended
|
name: qodana.recommended
|
||||||
bootstrap: |
|
bootstrap: |
|
||||||
# Generate sources (including protobuf) so Qodana resolves imports correctly.
|
# Disabled bootstrap to avoid shell parsing issues in CI. If you need code generation,
|
||||||
# Single-line POSIX-safe chain to avoid /bin/sh parsing issues in CI (no brackets in output).
|
# we can re-enable a robust script later. For now, do nothing and let Qodana run.
|
||||||
chmod +x ./mvnw >/dev/null 2>&1 || true; ./mvnw -B -q -DskipTests -DskipITs=true generate-sources >/dev/null 2>&1 || sh ./mvnw -B -q -DskipTests -DskipITs=true generate-sources >/dev/null 2>&1 || mvn -B -q -DskipTests -DskipITs=true generate-sources >/dev/null 2>&1 || echo "Qodana bootstrap: Maven not available; skipping source generation"
|
:
|
||||||
include:
|
include:
|
||||||
- name: CheckDependencyLicenses
|
- name: CheckDependencyLicenses
|
||||||
exclude:
|
exclude:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue