-
-
Notifications
You must be signed in to change notification settings - Fork 80
200 lines (185 loc) · 6.63 KB
/
cmake-build-windows.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
name: CMake-based build on Windows
on:
workflow_dispatch:
push:
branches: [ master, development, driver-wrappers, workflows ]
paths:
- "**"
- "!.github/**"
- ".github/action-scripts/install-cuda-windows.ps1"
- ".github/workflows/cmake-build-windows.yml"
pull_request:
branches: [ master, development, driver-wrappers, workflows ]
paths:
- "**"
- "!.github/**"
- ".github/action-scripts/install-cuda-windows.ps1"
- ".github/workflows/cmake-build-windows.yml"
jobs:
build:
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
# explicit include-based build matrix, of known valid options
matrix:
include:
# Windows2019 & VS 2019 supports 10.1+
- os: windows-2019
cuda: "12.1.1"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "12.0.1"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.8.0"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.7.0"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.6.2"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.6.1"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.6.0"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.5.0"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.4.0"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.3.0"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.2.2"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.1.1"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
- os: windows-2019
cuda: "11.0.3"
visual-studio: "Visual Studio 16 2019"
shell: "powershell"
os-type: "windows"
cmake-platform-flag: "-A x64"
# - os: windows-2019
# cuda: "10.2.89"
# visual-studio: "Visual Studio 16 2019"
# shell: "powershell"
# os-type: "windows"
# cmake-platform-flag: "-A x64"
# - os: windows-2019
# cuda: "10.1.243"
# visual-studio: "Visual Studio 16 2019"
# shell: "powershell"
# os-type: "windows"
# cmake-platform-flag: "-A x64"
# Windows2016 & VS 2017 supports 10.0+
# - os: windows-2016
# cuda: "11.0.167"
# visual-studio: "Visual Studio 15 2017"
# - os: windows-2016
# cuda: "10.2.89"
# visual-studio: "Visual Studio 15 2017"
# - os: windows-2016
# cuda: "10.1.243"
# visual-studio: "Visual Studio 15 2017"
#- os: windows-2016
# cuda: "10.0.130"
# visual-studio: "Visual Studio 15 2017"
env:
build_type: "Release"
cmake-generator: "${{ matrix.visual-studio }}"
visual_studio: "${{ matrix.visual-studio }}"
build_dir: "build"
steps:
- uses: actions/checkout@v3
- name: Install CUDA on Ubuntu systems
if: contains(matrix.os, 'ubuntu')
env:
cuda: ${{ matrix.cuda }}
run: .github/action-scripts/install-cuda-ubuntu.sh
shell: bash
- name: Install CUDA on Windows
if: contains(matrix.os, 'windows')
env:
cuda: ${{ matrix.cuda }}
run: .github\action-scripts\install-cuda-windows.ps1
shell: powershell
# - name: Check CUDA installation has succeeded - by logging some paths
# - if ${{ matrix.os-type == 'windows' }}
# run: |
# nvcc -V
# ls $env:CUDA_PATH
# ls $env:CUDA_PATH\bin
# ls $env:CUDA_PATH\include
- name: CMake configure
id: configure
run: cmake -B ${{ env.build_dir }} -G "${{ env.cmake-generator }}" ${{ matrix.cmake-platform-flag }} -DCAW_BUILD_EXAMPLES=ON
- name: Process potential errors in CMake configuration
if: ${{ failure() && steps.configure.outcome == 'failure' }}
working-directory: ${{ env.build_dir }}
run: |
cmake --version
if [[ -f "CMakeFiles/CMakeOutput.log" ]]; then
echo "---- CMakeFiles/CMakeOutput.log"
cat CMakeFiles/CMakeOutput.log
echo "----"
fi
if [[ -f "CMakeFiles/CMakeError.log" ]]; then
echo "---- CMakeFiles/CMakeError.log"
cat CMakeFiles/CMakeError.log
echo "----"
fi
shell: bash
- name: Build
run:
cmake --version ;
cmake --build ${{ env.build_dir }} --config ${{ env.build_type }} --verbose
# - name: Test
# working-directory: ${{github.workspace}}/build
# There are currently no unit tests defined by the cmake configuration!
# ... plus, the tests will be mostly useless on a machine without a GPU,
# so we can't really test.
# run: ctest -C ${{env.BUILD_TYPE}}