-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (48 loc) · 1.22 KB
/
cmake.yml
File metadata and controls
57 lines (48 loc) · 1.22 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: CMake
on:
push:
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Debug
jobs:
build-cuda:
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.9.0"
cuda-architectures: 60-real;70-real;75-real;80-real;86-real
build-hip:
needs: build-cuda # Only attempt HIP after CUDA was succesfull
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.4.0"
build-cuda-12-8:
if: github.ref_name == 'main'
needs: build-cuda
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.8.0"
build-cuda-12-6:
if: github.ref_name == 'main'
needs: build-cuda
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.6.0"
build-cuda-12-5:
if: github.ref_name == 'main'
needs: build-cuda
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.5.0"
build-hip-6-2:
if: github.ref_name == 'main'
needs: build-hip
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.2.0"
build-hip-6-3:
if: github.ref_name == 'main'
needs: build-hip
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.3.0"