From 8b29055a9a153d38b69c2a700e55fd78de1247bd Mon Sep 17 00:00:00 2001 From: Lan Xia Date: Wed, 6 Dec 2023 11:50:45 -0500 Subject: [PATCH] add support for FIPS140_3 Signed-off-by: Lan Xia --- buildenv/jenkins/openjdk_tests | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildenv/jenkins/openjdk_tests b/buildenv/jenkins/openjdk_tests index f5c7753d65..fc1bb730df 100644 --- a/buildenv/jenkins/openjdk_tests +++ b/buildenv/jenkins/openjdk_tests @@ -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