Fix CPU panel GPU sub-graph widths (crash / dropped sub-graphs) #1329
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: Continuous Build Gpu | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| tags-ignore: | |
| - '*.*' | |
| paths: | |
| - 'src/**' | |
| - '!src/osx/**' | |
| - '!src/freebsd/**' | |
| - '!src/netbsd/**' | |
| - '!src/openbsd/**' | |
| - 'include/**' | |
| - 'Makefile' | |
| - '.github/workflows/continuous-build-gpu.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - '!src/osx/**' | |
| - '!src/freebsd/**' | |
| - '!src/netbsd/**' | |
| - '!src/openbsd/**' | |
| - 'include/**' | |
| - 'Makefile' | |
| - '.github/workflows/continuous-build-gpu.yml' | |
| jobs: | |
| gpu_build_linux: | |
| runs-on: ubuntu-24.04 | |
| container: alpine:edge | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install build tools | |
| run: apk add --no-cache --update gcc g++ make linux-headers | |
| - name: Compile | |
| run: make CXX=g++ GPU_SUPPORT=true | |