diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 289baf9ce..5f749be47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,31 +70,3 @@ jobs: cache: maven - name: Build with Maven run: mvn --batch-mode --no-transfer-progress clean verify - - integration-wildfly-job: - runs-on: ubuntu-latest - name: Integration verification for WildFly - needs: arquillian-build-jdk8 - timeout-minutes: 300 - steps: - - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 - with: - name: arquillian - path: ~/.m2/repository/org/jboss - - name: Setup JDK 17 - uses: actions/setup-java@v4 - with: - java-version: 17 - distribution: temurin - cache: maven - - name: Checkout WildFly - uses: actions/checkout@v4 - with: - repository: wildfly/wildfly - - name: Run WildFly Integration Testsuite - env: - SNAPSHOT_VERSION: ${{ needs.arquillian-build-jdk8.outputs.SNAPSHOT_VERSION }} - run: | - mvn clean install -Dquickly -Dversion.org.jboss.arquillian.core="$SNAPSHOT_VERSION" - mvn clean verify -f testsuite/integration -DallTests -Dversion.org.jboss.arquillian.core="$SNAPSHOT_VERSION"