Change container image in FIPS tests to ubi9
Closes https://github.com/keycloak/keycloak/issues/12422
This commit is contained in:
parent
9432bd601f
commit
3f8c4e24e2
2 changed files with 3 additions and 3 deletions
2
.github/scripts/run-fips-it.sh
vendored
2
.github/scripts/run-fips-it.sh
vendored
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
dnf install -y java-17-openjdk-devel crypto-policies-scripts
|
||||
dnf install -y java-17-openjdk-devel
|
||||
fips-mode-setup --enable --no-bootcfg
|
||||
fips-mode-setup --is-enabled
|
||||
if [ $? -ne 0 ]; then
|
||||
|
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -403,7 +403,7 @@ jobs:
|
|||
jdk-version: 17
|
||||
|
||||
- name: Run crypto tests
|
||||
run: docker run --rm --workdir /github/workspace -v "${{ github.workspace }}":"/github/workspace" -v "$HOME/.m2":"/root/.m2" registry.access.redhat.com/ubi8/ubi:latest .github/scripts/run-fips-ut.sh
|
||||
run: docker run --rm --workdir /github/workspace -v "${{ github.workspace }}":"/github/workspace" -v "$HOME/.m2":"/root/.m2" registry.access.redhat.com/ubi9/ubi:latest .github/scripts/run-fips-ut.sh
|
||||
|
||||
- name: Upload JVM Heapdumps
|
||||
if: always()
|
||||
|
@ -445,7 +445,7 @@ jobs:
|
|||
run: ./mvnw install -nsu -B -e -pl testsuite/integration-arquillian/servers/auth-server/quarkus -Pauth-server-quarkus,auth-server-fips140-2
|
||||
|
||||
- name: Run base tests
|
||||
run: docker run --rm --workdir /github/workspace -e "SUREFIRE_RERUN_FAILING_COUNT" -v "${{ github.workspace }}":"/github/workspace" -v "$HOME/.m2":"/root/.m2" registry.access.redhat.com/ubi8/ubi:latest .github/scripts/run-fips-it.sh ${{ matrix.mode }}
|
||||
run: docker run --rm --workdir /github/workspace -e "SUREFIRE_RERUN_FAILING_COUNT" -v "${{ github.workspace }}":"/github/workspace" -v "$HOME/.m2":"/root/.m2" registry.access.redhat.com/ubi9/ubi:latest .github/scripts/run-fips-it.sh ${{ matrix.mode }}
|
||||
|
||||
- name: Upload JVM Heapdumps
|
||||
if: always()
|
||||
|
|
Loading…
Reference in a new issue