262fc09edc
* OpenJDK 21 support Closes #28517 Co-authored-by: Václav Muzikář <vaclav@muzikari.cz> Signed-off-by: Martin Bartoš <mabartos@redhat.com> * x509 SAN UPN other name is not handled in JDK 21 (#904) closes #29968 Signed-off-by: mposolda <mposolda@gmail.com> --------- Signed-off-by: Martin Bartoš <mabartos@redhat.com> Signed-off-by: mposolda <mposolda@gmail.com> Co-authored-by: Václav Muzikář <vaclav@muzikari.cz> Co-authored-by: Marek Posolda <mposolda@gmail.com>
20 lines
926 B
Bash
Executable file
20 lines
926 B
Bash
Executable file
#!/bin/bash
|
|
|
|
dnf install -y java-21-openjdk-devel
|
|
fips-mode-setup --enable --no-bootcfg
|
|
fips-mode-setup --is-enabled
|
|
if [ $? -ne 0 ]; then
|
|
exit 1
|
|
fi
|
|
STRICT_OPTIONS=""
|
|
if [ "$1" = "strict" ]; then
|
|
STRICT_OPTIONS="-Dauth.server.fips.mode=strict -Dauth.server.supported.keystore.types=BCFKS -Dauth.server.keystore.type=bcfks -Dauth.server.supported.rsa.key.sizes=2048,4096"
|
|
fi
|
|
echo "STRICT_OPTIONS: $STRICT_OPTIONS"
|
|
TESTS=`testsuite/integration-arquillian/tests/base/testsuites/suite.sh fips`
|
|
echo "Tests: $TESTS"
|
|
export JAVA_HOME=/etc/alternatives/java_sdk_21
|
|
set -o pipefail
|
|
|
|
# Profile app-server-wildfly needs to be explicitly set for FIPS tests
|
|
./mvnw test -Dsurefire.rerunFailingTestsCount=$SUREFIRE_RERUN_FAILING_COUNT -nsu -B -Pauth-server-quarkus,auth-server-fips140-2,app-server-wildfly -Dcom.redhat.fips=false $STRICT_OPTIONS -Dtest=$TESTS -pl testsuite/integration-arquillian/tests/base 2>&1 | misc/log/trimmer.sh
|