From 02ff813b96cf5cc35498e77a21a129a4b40061f7 Mon Sep 17 00:00:00 2001 From: Manfred Riem Date: Sat, 11 Jan 2025 13:13:20 -0600 Subject: [PATCH] Fixes #4521 - Remove tck-servlet GitHub workflow --- .github/workflows/tck-servlet.yml | 36 ------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/tck-servlet.yml diff --git a/.github/workflows/tck-servlet.yml b/.github/workflows/tck-servlet.yml deleted file mode 100644 index 96d9ac8d1..000000000 --- a/.github/workflows/tck-servlet.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: tck-servlet -on: - schedule: - - cron: "0 0 * * 1" - workflow_dispatch: - inputs: - httpImplementation: - description: 'HTTP Implementation' - default: 'impl' - required: true -jobs: - servlet: - if: github.repository == 'piranhacloud/piranha' - runs-on: ${{ matrix.os }} - strategy: - matrix: - java: [ '21' ] - os: [ubuntu-latest] - steps: - - name: Checkout sources - uses: actions/checkout@v4 - - name: Set up Java ${{ matrix.java }} - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: ${{ matrix.java }} - - name: Setup for TCK - run: mvn -B -DskipTests=true install -P${{ github.event.inputs.httpImplementation }} - if: ${{ github.event.inputs.httpImplementation }} - - name: Setup for TCK - run: mvn -B -DskipTests=true install - if: ${{ !github.event.inputs.httpImplementation }} - - name: Run TCK - run: | - mvn -amd -B -P external -pl external/tck-servlet/servlet verify - cat external/tck-servlet/target/piranha/report/text/summary.txt >> $GITHUB_STEP_SUMMARY \ No newline at end of file