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 committed Jun 10, 2019
1 parent 0ed42d6 commit d216f9d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ if (project != rootProject) {
systemProperty 'test.lucene-snapshot-revision', isLuceneSnapshot[0][1]
}
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 d216f9d

Please sign in to comment.