Skip to content

build: properly clean duplicates and self dependencies #1778

build: properly clean duplicates and self dependencies

build: properly clean duplicates and self dependencies #1778

Workflow file for this run

---
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

View workflow run for this annotation

GitHub Actions / Build on Linux with SDK

Workflow syntax warning

.github/workflows/build-linux.yml (Line: 12, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
!(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}}