Bump eclipse-dash/dash-licenses from 646710d2aab93c88e20121597596740fc1a5eb20 to 82298640031508f56d15419e8320bf63e4e5ce3e #2722
Workflow file for this run
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: | |
| check-dash-licenses: | |
| if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'dash-license') | |
| uses: eclipse-dash/dash-licenses/.github/workflows/mavenLicenseCheck.yml@82298640031508f56d15419e8320bf63e4e5ce3e # 1.1.0 | |
| with: | |
| projectId: tools.windowbuilder | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| java: [ 21, 24 ] | |
| include: | |
| - java: 21 | |
| target: 2024-06 | |
| - java: 24 | |
| target: master | |
| runs-on: ${{ matrix.os }} | |
| name: OS ${{ matrix.os }} Java ${{ matrix.java }} ${{ matrix.target }} compile | |
| timeout-minutes: 90 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1 | |
| 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.9 | |
| - 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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| 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 |