[#870] Overhaul out-of-date documentation (#871) #1145
This file contains hidden or 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: Arquillian Integration Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| wildfly-integration: | |
| name: 'WildFly Integration Tests' | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 90 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| java: | |
| - 17 | |
| - 21 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: temurin | |
| cache: maven | |
| - name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }} | |
| run: | | |
| ./mvnw -V clean install -U -B -fae '-Pwildfly' '-T1' '-Pintegration-tests' | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.os }}-${{ matrix.java }}-wildfly-surefire-reports | |
| path: '**/surefire-reports/*' | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.os }}-${{ matrix.java }}-wildfly-server-logs | |
| path: '**/server.log' | |
| payara-integration: | |
| name: 'Payara Integration Tests (${{ matrix.os }}, ${{ matrix.java }})' | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 90 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| java: | |
| # Payara 7 requires JDK 21+ (Jakarta EE 11) | |
| - 21 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: temurin | |
| cache: maven | |
| - name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }} | |
| run: | | |
| ./mvnw -V clean install -U -B -fae '-Ppayara' '-T1' '-Pintegration-tests' | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.os }}-${{ matrix.java }}-payara-surefire-reports | |
| path: '**/surefire-reports/*' | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.os }}-${{ matrix.java }}-payara-server-logs | |
| path: '**/server.log' |