From fd4821722fe68825892b0a4baabf87ff65ccd8cb Mon Sep 17 00:00:00 2001 From: Morgan Date: Tue, 19 Nov 2024 10:47:14 +0900 Subject: [PATCH] Add static testing on Linux GPU --- .github/workflows/continuous-build-gpu.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/continuous-build-gpu.yml b/.github/workflows/continuous-build-gpu.yml index 1dca76624..edabb80bf 100644 --- a/.github/workflows/continuous-build-gpu.yml +++ b/.github/workflows/continuous-build-gpu.yml @@ -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