From 272d59be889e56c1933ae1681c29a3362de10396 Mon Sep 17 00:00:00 2001 From: mposolda Date: Mon, 14 Oct 2024 08:56:30 +0200 Subject: [PATCH] Temporarily comment FIPS CI until it is figured what causes the issue closes #33875 Signed-off-by: mposolda --- .github/workflows/ci.yml | 108 +++++++++++++++++++-------------------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afa797e716..cafa5a577d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -704,59 +704,59 @@ jobs: with: job-id: fips-unit-tests - fips-integration-tests: - name: FIPS IT - needs: build - runs-on: ubuntu-latest - timeout-minutes: 45 - strategy: - matrix: - mode: [non-strict, strict] - fail-fast: false - steps: - - uses: actions/checkout@v4 - - - name: Fake fips - run: | - cd .github/fake_fips - make - sudo insmod fake_fips.ko - - - id: integration-test-setup - name: Integration test setup - uses: ./.github/actions/integration-test-setup - with: - jdk-version: 21 - - - name: Build adapter distributions - run: ./mvnw install -DskipTests -f distribution/pom.xml - - - name: Build app servers - run: ./mvnw install -DskipTests -Pbuild-app-servers -f testsuite/integration-arquillian/servers/app-server/pom.xml - - - - name: Prepare Quarkus distribution with BCFIPS - run: ./mvnw install -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 }} - - - name: Upload JVM Heapdumps - if: always() - uses: ./.github/actions/upload-heapdumps - - - uses: ./.github/actions/upload-flaky-tests - name: Upload flaky tests - env: - GH_TOKEN: ${{ github.token }} - with: - job-name: FIPS IT - - - name: Surefire reports - if: always() - uses: ./.github/actions/archive-surefire-reports - with: - job-id: fips-integration-tests-${{ matrix.mode }} +# fips-integration-tests: +# name: FIPS IT +# needs: build +# runs-on: ubuntu-latest +# timeout-minutes: 45 +# strategy: +# matrix: +# mode: [non-strict, strict] +# fail-fast: false +# steps: +# - uses: actions/checkout@v4 +# +# - name: Fake fips +# run: | +# cd .github/fake_fips +# make +# sudo insmod fake_fips.ko +# +# - id: integration-test-setup +# name: Integration test setup +# uses: ./.github/actions/integration-test-setup +# with: +# jdk-version: 21 +# +# - name: Build adapter distributions +# run: ./mvnw install -DskipTests -f distribution/pom.xml +# +# - name: Build app servers +# run: ./mvnw install -DskipTests -Pbuild-app-servers -f testsuite/integration-arquillian/servers/app-server/pom.xml +# +# +# - name: Prepare Quarkus distribution with BCFIPS +# run: ./mvnw install -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 }} +# +# - name: Upload JVM Heapdumps +# if: always() +# uses: ./.github/actions/upload-heapdumps +# +# - uses: ./.github/actions/upload-flaky-tests +# name: Upload flaky tests +# env: +# GH_TOKEN: ${{ github.token }} +# with: +# job-name: FIPS IT +# +# - name: Surefire reports +# if: always() +# uses: ./.github/actions/archive-surefire-reports +# with: +# job-id: fips-integration-tests-${{ matrix.mode }} forms-integration-tests: name: Forms IT @@ -975,7 +975,7 @@ jobs: - store-model-tests - clustering-integration-tests - fips-unit-tests - - fips-integration-tests +# - fips-integration-tests - forms-integration-tests - webauthn-integration-tests - sssd-unit-tests