We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20de88e commit 203a90aCopy full SHA for 203a90a
Jenkinsfile
@@ -487,7 +487,9 @@ stage('Non-default environments') {
487
withMavenWorkspace {
488
// Re-run integration tests against the JARs produced by the default build,
489
// but using a different JDK to build and run the tests.
490
- mavenNonDefaultBuild buildEnv, "-f integrationtest"
+ // we pass -Dgib.buildAll=true so that we won't skip the test modules, otherwise it may lead to
491
+ // part of test sources compiled with a more recent JDK then the one we are about to test with:
492
+ mavenNonDefaultBuild buildEnv, "-f integrationtest -Dgib.buildAll=true"
493
}
494
495
})
0 commit comments