diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 853bc6d3fbd..e9385aa34e8 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -380,49 +380,4 @@ jobs: with: test-report-xml-base-dir: catalog - extensions-jvm-tests: - runs-on: ubuntu-latest - needs: initial-mvn-install - strategy: - fail-fast: false - matrix: - java: [ '17', '21' ] - env: - MAVEN_OPTS: -Xmx3000m - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ env.CHECKOUT_REF }} - fetch-depth: 0 - - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: ${{ matrix.java }} - - name: Download Maven Repo - uses: actions/download-artifact@v4 - with: - name: maven-repo - path: .. - - name: Extract Maven Repo - shell: bash - run: | - df -h / - tar -xzf ../maven-repo.tgz -C ~ - rm -f ../maven-repo.tgz - df -h / - - name: cd integration-tests-jvm && mvn clean test - run: | - cd integration-tests-jvm - ../mvnw ${CQ_MAVEN_ARGS} ${BRANCH_OPTIONS} \ - -Dformatter.skip -Dimpsort.skip -Denforcer.skip \ - --fail-at-end \ - clean test - - name: Report test failures - uses: ./.github/actions/test-summary - if: ${{ failure() }} - with: - test-report-summary-heading: Extension Tests Alternative JDK ${{matirx.java}} - test-report-xml-base-dir: extensions-jvm