Skip to content

Commit

Permalink
Add static testing on Linux GPU
Browse files Browse the repository at this point in the history
  • Loading branch information
morgan9e authored Nov 19, 2024
1 parent 848a336 commit fd48217
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/continuous-build-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,17 @@ jobs:
- name: Compile
run: make CXX=g++ GPU_SUPPORT=true

gpu_build_static_linux:
runs-on: ubuntu-latesta
container: alpine:edge
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4

- name: Install build tools
run: apk add --no-cache --update gcc g++ make linux-headers

- name: Compile
run: make CXX=g++ GPU_SUPPORT=true STATIC=true

0 comments on commit fd48217

Please sign in to comment.