build: properly clean duplicates and self dependencies #1778
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: Build on Linux with SDK | ||
| on: | ||
| workflow_dispatch: | ||
| release: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened, closed] | ||
| jobs: | ||
| build: | ||
| if: | | ||
|
Check warning on line 12 in .github/workflows/build-linux.yml
|
||
| !(github.event_name == 'pull_request' && ${{ contains(github.event.commits[0].message, 'ci skip') }}) | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| sdk: ["25.12.1"] # pick 2 or 3 most recent. | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| - name: Install MESA on ${{ runner.os }} with SDK ${{matrix.sdk}} | ||
| uses: ./.github/actions/install-mesa | ||
| with: | ||
| sdk: ${{matrix.sdk}} | ||