Skip to content

Commit c623aac

Browse files
authored
Disable flaky quarkus tasks for codeql build (#13297)
1 parent 9101f03 commit c623aac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/codeql.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161
# --no-build-cache is required for codeql to analyze all modules
6262
# --no-daemon is required for codeql to observe the compilation
6363
# (see https://docs.github.com/en/code-security/codeql-cli/getting-started-with-the-codeql-cli/preparing-your-code-for-codeql-analysis#specifying-build-commands)
64-
run: ./gradlew assemble -x javadoc --no-build-cache --no-daemon
64+
# quarkus tasks are disabled because they often cause the build to fail (see https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/13284)
65+
run: ./gradlew assemble -x javadoc -x :instrumentation:quarkus-resteasy-reactive:quarkus3-testing:quarkusGenerateCodeDev -x :instrumentation:quarkus-resteasy-reactive:quarkus2-testing:quarkusGenerateCodeDev --no-build-cache --no-daemon
6566

6667
- name: Perform CodeQL analysis
6768
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9

0 commit comments

Comments
 (0)