Support Intel GPUs before Gen-6 (patch from upstream) #274
Workflow file for this run
This file contains 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: 🧪 Test snap can be built on x86_64 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
tags-ignore: | |
- '*.*' | |
paths: | |
- 'src/**' | |
- '!src/osx/**' | |
- '!src/freebsd/**' | |
- '!src/netbsd/**' | |
- '!src/openbsd/**' | |
- 'include/**' | |
- 'Makefile' | |
- '.github/workflows/test-snap-can-build.yml' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
- '!src/osx/**' | |
- '!src/freebsd/**' | |
- '!src/netbsd/**' | |
- '!src/openbsd/**' | |
- 'include/**' | |
- 'Makefile' | |
- '.github/workflows/test-snap-can-build.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: snapcore/action-build@v1 | |
id: build | |
- uses: diddlesnaps/snapcraft-review-action@v1 | |
with: | |
snap: ${{ steps.build.outputs.snap }} | |
isClassic: 'false' |