Skip to content

Bump org.jboss.arquillian:arquillian-bom from 1.9.1.Final to 1.9.3.Final #955

Bump org.jboss.arquillian:arquillian-bom from 1.9.1.Final to 1.9.3.Final

Bump org.jboss.arquillian:arquillian-bom from 1.9.1.Final to 1.9.3.Final #955

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Build and run TCK Servlet
on: [push, pull_request]
permissions:
security-events: read
contents: write
actions: read
id-token: write
checks: write
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
java: [17]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Arquillian
uses: actions/checkout@v4
with:
repository: 'arquillian/arquillian-container-jetty'
ref: 'master'
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Set up Maven
run:
mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.2.0:wrapper -Dmaven=3.9.6
- name: Build Arquillian with Maven
run: ./mvnw install -B -U
- name: Checkout Servlet TCK
uses: actions/checkout@v4
with:
repository: 'jakartaee/servlet'
ref: '6.1.x'
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Set up Maven
run:
mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.2.0:wrapper -Dmaven=3.9.6
- name: Build Servlet TCK with Maven
run: ./mvnw -V -B -U clean install -DskipTests -e -B -U
- name: Checkout TCK Run
uses: actions/checkout@v4
- name: Set up Maven
run:
mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.2.0:wrapper -Dmaven=3.9.6
- name: Build TCK Run with Maven
run: ./mvnw -V -B -U -am clean verify -e -B -Dmaven.test.failure.ignore=true
- name: Publish Test Report
uses: dorny/test-reporter@v1
with:
name: Tests Report
path: '**/target/surefire-reports/TEST-**.xml'
reporter: java-junit
fail-on-error: false