Add RIFE2_SNAPSHOTS repository #116
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: bld-ci | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| build-bld-project: | |
| strategy: | |
| matrix: | |
| java-version: [ 17, 21, 25 ] | |
| os: [ ubuntu-latest, windows-latest, macos-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout source repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK ${{ matrix.java-version }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: "zulu" | |
| java-version: ${{ matrix.java-version }} | |
| - name: Download dependencies [3.5.x example] | |
| working-directory: examples/3.5.x | |
| run: ./bld download | |
| - name: Compile source [3.5.x example] | |
| working-directory: examples/3.5.x | |
| run: ./bld compile | |
| - name: Run tests [3.5.x example] | |
| working-directory: examples/3.5.x | |
| run: ./bld test | |
| - name: Compile and create the JAR [3.5.x example] | |
| working-directory: examples/3.5.x | |
| run: ./bld bootjar | |
| - name: Compile and create the WAR [3.5.x example] | |
| working-directory: examples/3.5.x | |
| run: ./bld bootwar | |
| - name: Download dependencies [4.0.x example] | |
| working-directory: examples/4.0.x | |
| run: ./bld download | |
| - name: Compile source [4.0.x example] | |
| working-directory: examples/4.0.x | |
| run: ./bld compile | |
| - name: Run tests [4.0.x example] | |
| working-directory: examples/4.0.x | |
| run: ./bld test | |
| - name: Compile and create the JAR [4.0.x example] | |
| working-directory: examples/4.0.x | |
| run: ./bld bootjar | |
| - name: Compile and create the WAR [4.0.x example] | |
| working-directory: examples/4.0.x | |
| run: ./bld bootwar | |
| - name: Download dependencies | |
| run: ./bld download | |
| - name: Compile source code | |
| run: ./bld compile | |
| - name: Run tests | |
| id: tests | |
| run: ./bld test | |
| - name: Run reporter | |
| if: always() && steps.tests.outcome == 'failure' | |
| run: ./bld reporter --all |