-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 962 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: build
on:
push:
workflow_dispatch:
jobs:
linting:
name: run
runs-on: ubuntu-latest
env:
gcc-version: "12"
cuda-version: "12.2.0"
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install cuda
uses: Jimver/[email protected]
with:
cuda: ${{ env.cuda-version }}
method: "network"
sub-packages: '["runtime", "nvcc", "nvrtc-dev"]'
linux-local-args: '["--toolkit"]'
- name: Show tool versions
run: |
echo "nvcc: $(nvcc --version)"
echo "g++: $(g++-${{ env.gcc-version}} --version)"
- name: Run CMake
shell: bash -el {0}
run: |
cmake -DCMAKE_CXX_COMPILER=g++-${{ env.gcc-version }} -S . -B build
- name: Build the code
shell: bash -el {0}
run: |
cd build && make -j