From 90e17a335f8e21800f78f3c5c49ec43b43713de2 Mon Sep 17 00:00:00 2001 From: Miquel Simon Date: Mon, 25 Nov 2024 13:53:30 +0100 Subject: [PATCH] Remove new test PoC from workflow Closes #35282 Signed-off-by: Miquel Simon --- .github/workflows/ci.yml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 125ef47b3bca..9e665fa23a4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,6 @@ jobs: ci-store: ${{ steps.conditional.outputs.ci-store }} ci-sssd: ${{ steps.conditional.outputs.ci-sssd }} ci-webauthn: ${{ steps.conditional.outputs.ci-webauthn }} - ci-test-poc: ${{ steps.conditional.outputs.ci-test-poc }} ci-aurora: ${{ steps.auroradb-tests.outputs.run-aurora-tests }} steps: @@ -84,7 +83,7 @@ jobs: run: | SEP="" PROJECTS="" - for i in `find -name '*Test.java' -type f | egrep -v './(testsuite|quarkus|docs|test-poc|test-framework)/' | sed 's|/src/test/java/.*||' | sort | uniq | sed 's|./||'`; do + for i in `find -name '*Test.java' -type f | egrep -v './(testsuite|quarkus|docs)/' | sed 's|/src/test/java/.*||' | sort | uniq | sed 's|./||'`; do PROJECTS="$PROJECTS$SEP$i" SEP="," done @@ -936,26 +935,6 @@ jobs: - name: Run tests run: ./mvnw test -f test-framework/pom.xml - test-poc: - name: Test PoC - runs-on: ubuntu-latest - if: needs.conditional.outputs.ci-test-poc == 'true' - needs: - - conditional - - build - timeout-minutes: 30 - steps: - - uses: actions/checkout@v4 - - - id: integration-test-setup - name: Integration test setup - uses: ./.github/actions/integration-test-setup - - - name: Run tests - env: - KC_TEST_BROWSER: chrome-headless - run: ./mvnw clean install -f test-poc/pom.xml - check: name: Status Check - Keycloak CI if: always() @@ -979,7 +958,6 @@ jobs: - sssd-unit-tests - migration-tests - external-infinispan-tests - - test-poc runs-on: ubuntu-latest steps: - uses: actions/checkout@v4