-
Notifications
You must be signed in to change notification settings - Fork 11
264 lines (251 loc) · 10.7 KB
/
unit.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
##==================================================================================================
## SPY - C++ Informations Broker
## Copyright : SPY Project Contributors
## SPDX-License-Identifier: BSL-1.0
##==================================================================================================
name: SPY - Unit Tests
on:
pull_request:
branches:
- main
concurrency:
group: spy-unit-${{ github.ref }}
cancel-in-progress: true
jobs:
##################################################################################################
## Mac OS X Targets
##################################################################################################
macosx:
runs-on: [macos-12]
strategy:
fail-fast: false
matrix:
cfg:
- { comp: clang , arch: x86_osx, mode: Debug }
- { comp: clang , arch: x86_osx, mode: Release }
- { comp: gcc , arch: x86_osx, mode: Debug }
- { comp: gcc , arch: x86_osx, mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.comp }} in ${{ matrix.cfg.mode }} mode
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE="${{ matrix.cfg.mode }}" \
-DCMAKE_TOOLCHAIN_FILE=../test/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake
- name: Compiling Unit Tests
run: cd build && make spy-test -j 2
- name: Running Unit Tests
run: cd build && ctest --verbose --output-on-failure -j 2
##################################################################################################
## Windows Targets
##################################################################################################
msvc:
runs-on: [windows-2022]
strategy:
fail-fast: false
matrix:
cfg:
- { mode: Debug }
- { mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for MSVC ${{ matrix.cfg.mode }}
run: |
mkdir build && cd build
cmake -G "Visual Studio 17 2022" -A x64 ..
- name: Compiling Unit Tests
run: |
cd build
cmake --build . --target spy-test --config ${{ matrix.cfg.mode }} --parallel 2
- name: Running Tests
run: |
cd build
ctest --verbose -C ${{ matrix.cfg.mode }} --output-on-failure
clang-cl:
runs-on: [windows-2022]
strategy:
fail-fast: false
matrix:
cfg:
- { mode: Debug }
- { mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for Clang CL ${{ matrix.cfg.mode }}
run: |
mkdir build && cd build
cmake -G "Visual Studio 17 2022" -T ClangCL -A x64 ..
- name: Compiling Unit Tests
run: |
cd build
cmake --build . --target spy-test --config ${{ matrix.cfg.mode }} --parallel 2
- name: Running Tests
run: |
cd build
ctest --verbose -C ${{ matrix.cfg.mode }} --output-on-failure
##################################################################################################
## WASM targets
##################################################################################################
wasm:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
matrix:
cfg:
- { comp: clang , arch: wasm, mode: Debug }
- { comp: clang , arch: wasm, mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.comp }} in ${{ matrix.cfg.mode }} mode
run: |
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE="${{ matrix.cfg.mode }}" \
-DCMAKE_TOOLCHAIN_FILE=../test/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake
- name: Compiling Unit Tests
run: cd build && ninja spy-test -j 2
- name: Running Unit Tests
run: cd build && ctest --verbose --output-on-failure -j 2
##################################################################################################
## RISC-V targets
##################################################################################################
riscv:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
matrix:
cfg:
- { comp: clang , arch: rvv128, mode: Debug }
- { comp: clang , arch: rvv128, mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.comp }} in ${{ matrix.cfg.mode }} mode
run: |
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE="${{ matrix.cfg.mode }}" \
-DCMAKE_TOOLCHAIN_FILE=../test/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake
- name: Compiling Unit Tests
run: cd build && ninja spy-test -j 2
- name: Running Unit Tests
run: cd build && ctest --verbose --output-on-failure -j 2
##################################################################################################
## NVCC targets
##################################################################################################
nvcc:
runs-on: ubuntu-latest
container:
image: nvidia/cuda:12.3.2-devel-ubi8
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Compiling Unit Tests
run: |
mkdir build && cd build
nvcc ../test/unit/accelerator.cu -std=c++17 -I../include -o accelerator.device.exe
nvcc ../test/unit/accelerator.cpp -std=c++17 -I../include -o accelerator.host.exe
nvcc ../test/unit/arch.cpp -std=c++17 -I../include -o arch.exe
nvcc ../test/unit/compiler.cpp -std=c++17 -I../include -o compiler.exe
nvcc ../test/unit/data_model.cpp -std=c++17 -I../include -o data_model.exe
nvcc ../test/unit/libc.cpp -std=c++17 -I../include -o libc.exe
nvcc ../test/unit/os.cpp -std=c++17 -I../include -o os.exe
nvcc ../test/unit/simd.cpp -std=c++17 -I../include -o simd.exe
nvcc ../test/unit/stdlib.cpp -std=c++17 -I../include -o stdlib.exe
- name: Running Unit Tests
run: |
cd build
./accelerator.device.exe && ./accelerator.host.exe && ./arch.exe && ./compiler.exe && ./data_model.exe && \
./libc.exe && ./os.exe && ./simd.exe && ./stdlib.exe
##################################################################################################
## DPC++ Target
##################################################################################################
dpcpp:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:sycl-v1
strategy:
fail-fast: false
matrix:
cfg:
- { comp: dpcpp , arch: x86 , mode: Debug }
- { comp: dpcpp , arch: sycl, mode: Debug }
- { comp: dpcpp , arch: x86 , mode: Release }
- { comp: dpcpp , arch: sycl, mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.comp }} in ${{ matrix.cfg.mode }} mode
run: |
source /opt/intel/oneapi/setvars.sh
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE="${{ matrix.cfg.mode }}" \
-DCMAKE_TOOLCHAIN_FILE=../test/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake
- name: Compiling Unit Tests
run: cd build && ninja spy-test -j 2
- name: Running Unit Tests
run: cd build && ctest --verbose --output-on-failure -j 2
##################################################################################################
## Clang targets
##################################################################################################
clang:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
matrix:
cfg:
- { comp: clang , arch: x86, mode: Debug }
- { comp: clang , arch: x86, mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.comp }} in ${{ matrix.cfg.mode }} mode
run: |
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE="${{ matrix.cfg.mode }}" \
-DCMAKE_TOOLCHAIN_FILE=../test/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake
- name: Compiling Unit Tests
run: cd build && ninja spy-test -j 2
- name: Running Unit Tests
run: cd build && ctest --verbose --output-on-failure -j 2
##################################################################################################
## gcc targets
##################################################################################################
gcc:
runs-on: ubuntu-latest
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
matrix:
cfg:
- { comp: gcc , arch: x86 , opts: , mode: Debug }
- { comp: gcc , arch: x86 , opts: , mode: Release }
- { comp: gcc , arch: aarch64 , opts: -Wno-psabi, mode: Debug }
- { comp: gcc , arch: aarch64 , opts: -Wno-psabi, mode: Release }
- { comp: gcc , arch: aarch64.sve , opts: -Wno-psabi, mode: Debug }
- { comp: gcc , arch: aarch64.sve , opts: -Wno-psabi, mode: Release }
- { comp: gcc , arch: aarch64.sve2, opts: -Wno-psabi, mode: Debug }
- { comp: gcc , arch: aarch64.sve2, opts: -Wno-psabi, mode: Release }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi, mode: Debug }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi, mode: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.comp }} in ${{ matrix.cfg.mode }} mode
run: |
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE="${{ matrix.cfg.mode }}" \
-DCMAKE_TOOLCHAIN_FILE=../test/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake
- name: Compile Unit Tests
run: cd build && ninja spy-test -j 2
- name: Running Unit Tests
run: cd build && ctest --verbose --output-on-failure -j 2