Skip to content

Commit

Permalink
add support for FIPS140_3
Browse files Browse the repository at this point in the history
Signed-off-by: Lan Xia <[email protected]>
  • Loading branch information
llxia committed Dec 6, 2023
1 parent 45537f2 commit 8b29055
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions buildenv/jenkins/openjdk_tests
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ timestamps{
if (params.TEST_FLAG == "FIPS" || params.TEST_FLAG == "FIPS140_2") {
LABEL = LABEL.minus("ci.role.test&&").concat("&&ci.role.test.fips")
env.EXTRA_OPTIONS += " -Dsemeru.fips=true"
} else if (params.TEST_FLAG.contains("FIPS140_3_")) {
String[] tokens = TEST_FLAG.split('_')
def opts = tokens[2];
env.EXTRA_OPTIONS += " -Dsemeru.fips=true -Dsemeru.customprofile=${opts}"
}

// Temporarily exclude ubuntu 22 machines for criu sanity.external pipeline
Expand Down

0 comments on commit 8b29055

Please sign in to comment.