forked from piranhacloud/piranha
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (36 loc) · 1.09 KB
/
tck-servlet.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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