Skip to content

Commit

Permalink
Don't run build-tools integ tests on FIPS (#42986)
Browse files Browse the repository at this point in the history
These run Gradle and FIPS isn't supported

Closes #41721
  • Loading branch information
alpar-t authored Jun 10, 2019
1 parent ab25a01 commit 0beba63
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@ if (project != rootProject) {
if (isLuceneSnapshot) {
systemProperty 'test.lucene-snapshot-revision', isLuceneSnapshot[0][1]
}
maxParallelForks System.getProperty('tI', project.rootProject.ext.defaultParallel.toString()) as Integer
maxParallelForks System.getProperty('tests.jvms', project.rootProject.ext.defaultParallel.toString()) as Integer
// These tests run Gradle which doesn't have FIPS support
onlyIf { project.inFipsJvm == false }
}
check.dependsOn(integTest)

Expand Down

0 comments on commit 0beba63

Please sign in to comment.