Skip to content

Commit d925ec2

Browse files
authored
Merge pull request #46420 from gsmet/fix-its-gib
Properly disable GIB for Integration Tests
2 parents 820eeaf + f38869d commit d925ec2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: .github/workflows/ci-actions-incremental.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -441,12 +441,13 @@ jobs:
441441
run: |
442442
if [[ "${{ matrix.java.category }}" == *"Integration"* ]]; then
443443
PL=$JVM_TEST_INTEGRATION_TESTS_SELECTOR
444-
WORKAROUND=-Dgib.buildAll=true
444+
WORKAROUND=""
445445
else
446446
PL=$JVM_TEST_NORMAL_TESTS_SELECTOR
447+
WORKAROUND="${{ needs.build-jdk17.outputs.gib_args }}"
447448
fi
448449
# Despite the pre-calculated run_jvm flag, GIB has to be re-run here to figure out the exact submodules to build.
449-
./mvnw $COMMON_MAVEN_ARGS $COMMON_TEST_MAVEN_ARGS $PTS_MAVEN_ARGS $PL clean install -Dsurefire.timeout=1200 -Dno-test-kubernetes ${{ matrix.java.maven_args }} ${{ needs.build-jdk17.outputs.gib_args }} $WORKAROUND
450+
./mvnw $COMMON_MAVEN_ARGS $COMMON_TEST_MAVEN_ARGS $PTS_MAVEN_ARGS $PL clean install -Dsurefire.timeout=1200 -Dno-test-kubernetes ${{ matrix.java.maven_args }} $WORKAROUND
450451
- name: Clean Gradle temp directory
451452
if: always()
452453
run: devtools/gradle/gradlew --stop && rm -rf devtools/gradle/gradle-extension-plugin/build/tmp

0 commit comments

Comments
 (0)