Resolves#236 Update the namespace detection for the root namespace to support stability level qualifiers. #103
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Tests-non-elytron-latest-wildfly: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
fail-fast: false | |
name: Non-elytron tests on JDK ${{ matrix.java }} - default WildFly profile | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
architecture: x64 | |
- name: Tests - non-elytron | |
run: mvn verify -s settings.xml -B -fae -Dmaven.test.redirectTestOutputToFile=true -Dtest=\!**.elytron.** | |
Tests-elytron-latest-wildfly: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
fail-fast: false | |
name: Elytron tests on JDK ${{ matrix.java }} - default WildFly profile | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
architecture: x64 | |
- name: Tests - elytron | |
run: mvn verify -s settings.xml -B -fae -Dmaven.test.redirectTestOutputToFile=true -Dtest=**.elytron.** | |
Tests-non-elytron-wildfly-10: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
java: [ 8 ] | |
fail-fast: false | |
name: Non-elytron tests on JDK ${{ matrix.java }} - WildFly 10 profile | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
architecture: x64 | |
- name: Tests - non-elytron | |
run: mvn verify -s settings.xml -B -fae -Dmaven.test.redirectTestOutputToFile=true -Dtest=\!**.elytron.** -Pwildfly10 | |
Tests-elytron-wildfly-10: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
java: [ 8 ] | |
fail-fast: false | |
name: Elytron tests on JDK ${{ matrix.java }} - WildFly 10 profile | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
architecture: x64 | |
- name: Tests - elytron | |
run: mvn verify -s settings.xml -B -fae -Dmaven.test.redirectTestOutputToFile=true -Dtest=**.elytron.** -Pwildfly10 |