chore(deps): update brew #191
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: Validate | |
| on: | |
| pull_request: | |
| branches: [testing, next] | |
| merge_group: | |
| branches: [testing, next] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| concurrency: | |
| group: validate-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Setup Just | |
| uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2 | |
| with: | |
| tool: just | |
| - name: Validate publish workflow and composite actions | |
| run: just check-publish-workflow | |
| - name: Restore BST cache | |
| uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6 | |
| with: | |
| path: ~/.cache/buildstream | |
| key: bst-show-${{ github.base_ref || github.ref_name }}-${{ hashFiles('elements/gnome-build-meta.bst', 'elements/freedesktop-sdk.bst', 'Justfile') }} | |
| restore-keys: | | |
| bst-show-${{ github.base_ref || github.ref_name }}- | |
| bst-show- | |
| - name: Check for dangling submodules | |
| run: | | |
| if git ls-files --stage | grep -q '^160000'; then | |
| echo "ERROR: dangling gitlink(s) found — no submodules allowed in this repo" | |
| git ls-files --stage | grep '^160000' | |
| exit 1 | |
| fi | |
| - name: Check freedesktop-sdk patch drift | |
| run: just patch-drift-check | |
| - name: Validate BST element graph (default) | |
| env: | |
| BST_FLAGS: -o x86_64_v3 false --no-interactive | |
| run: just bst show --deps all oci/bluefin.bst | |
| - name: Validate BST element graph (nvidia) | |
| env: | |
| BST_FLAGS: -o x86_64_v3 false --no-interactive | |
| run: just bst show --deps all oci/bluefin-nvidia.bst |