Fix macOS Intel runner image #101
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: Java-EA with Maven | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| env: | |
| MAVEN_ARGS: "-B -ntp" | |
| jobs: | |
| build-and-test-job: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [ 25 ] | |
| os: | |
| - ubuntu-latest # Linux x64 | |
| - ubuntu-24.04-arm # Linux arm64 | |
| - macos-latest # macOS arm64 | |
| - windows-11-arm # Windows arm64 | |
| name: JDK${{ matrix.java }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout and Setup Maven | |
| uses: s4u/[email protected] | |
| with: | |
| checkout-submodules: true | |
| checkout-fetch-depth: 0 | |
| java-version: ${{ matrix.java }} | |
| - name: Pre-download dependencies with Maven | |
| uses: nick-fields/retry@v3 | |
| with: | |
| command: mvn -U dependency:go-offline | |
| max_attempts: 3 | |
| timeout_minutes: 5 | |
| - name: Build and (headless) test with Maven (Linux) | |
| if: ${{ runner.os == 'Linux' }} | |
| run: xvfb-run mvn verify | |
| - name: Build and (headless) test with Maven (Windows and macOS) | |
| if: ${{ runner.os != 'Linux' }} | |
| run: mvn verify |