Skip to content

Bump org.jboss.arquillian.junit:arquillian-junit-container from 1.7.0.Alpha12 to 1.7.1.Final #299

Bump org.jboss.arquillian.junit:arquillian-junit-container from 1.7.0.Alpha12 to 1.7.1.Final

Bump org.jboss.arquillian.junit:arquillian-junit-container from 1.7.0.Alpha12 to 1.7.1.Final #299

Workflow file for this run

name: CI Build
on:
push:
branches-ignore:
- 'dependabot/**'
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
pull_request:
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 14, 17]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v2
name: checkout
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- uses: actions/[email protected]
name: set up jdk ${{matrix.java}}
with:
java-version: ${{matrix.java}}
- name: build with maven
run: |
export MAVEN_OPTS="--add-exports=java.xml/com.sun.org.apache.xerces.internal.parsers=ALL-UNNAMED --add-exports=java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED" # needed for JDK 16+ only
mvn -B install
older-wildfly:
if: false # Currently only WF 28 is supported by this feature pack branch
runs-on: ubuntu-latest
strategy:
matrix:
wildfly: [23.0.2.Final, 24.0.0.Final, 25.0.1.Final]
name: build with wildfly ${{matrix.wildfly}}
steps:
- uses: actions/checkout@v2
name: checkout
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-wf-${{ matrix.wildfly }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- uses: actions/[email protected]
name: set up jdk 11
with:
java-version: 11
- name: build
run: mvn -B install
- name: test with an older wildfly version
run: mvn -B test -Dversion.org.wildfly=${{matrix.wildfly}} -pl testsuite/integration,testsuite/server-tck,quickstart