Bump eclipse-dash/dash-licenses/.github/workflows/mavenLicenseCheck.yml from 4815f4ae807fc39514d11b64e7b84e3438c35fb0 to af0f4177e79981b1e654041bf29e0d082facd5ae #3850
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: WindowBuilder verification build | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - labeled | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| java: [ 24, 25 ] | |
| include: | |
| - java: 24 | |
| target: 2024-06 | |
| - java: 25 | |
| target: master | |
| runs-on: ${{ matrix.os }} | |
| name: OS ${{ matrix.os }} Java ${{ matrix.java }} ${{ matrix.target }} compile | |
| timeout-minutes: 90 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: 'temurin' # See 'Supported distributions' for available options | |
| java-version: ${{ matrix.java }} | |
| cache: 'maven' | |
| - name: Set up Maven | |
| uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 # v5 | |
| with: | |
| maven-version: 3.9.13 | |
| - name: Build with Maven | |
| uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1 | |
| with: | |
| run: >- | |
| mvn -V -B -fae -ntp clean verify -P ${{ matrix.target }} | |
| - name: Upload Test Results for Java-${{ matrix.java }} | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| if: always() | |
| with: | |
| name: test-results-${{ matrix.os }}-java${{ matrix.java }}-${{ matrix.target }} | |
| if-no-files-found: error | |
| path: | | |
| ${{ github.workspace }}/**/target/surefire-reports/*.xml | |
| event_file: | |
| name: "Upload Event File" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Upload | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: Event File | |
| path: ${{ github.event_path }} |