-
Notifications
You must be signed in to change notification settings - Fork 90
295 lines (257 loc) · 8.17 KB
/
ci_win.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
name: Windows Github Action CI
permissions:
contents: read
on:
pull_request:
branches:
- SYCLomatic
types: [opened, synchronize, reopened, ready_for_review]
env:
BUILD_CONCURRENCY: 2
MACOS_BUILD_CONCURRENCY: 3
TEST_TIMEOUT: 3600
jobs:
windows-build:
name: windows-build
if: github.event.pull_request.draft == false
runs-on: win_build_sc
outputs:
build_success: ${{ steps.Echo-Build-Success.outputs.build_success }}
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
path: c2s.src
- name: Checkout Test Repo
#uses: actions/checkout@v4
#with:
# repository:
# path: test_repo
run: |
if exist test_repo rd /s /q test_repo
git clone https://[email protected]/oneapi-src/SYCLomatic-test.git test_repo -b SYCLomatic
shell: cmd
- name: Cleanup Workspace
run: |
if exist c2s.obj rd /s /q c2s.obj
if exist c2s.src/build rd /s /q c2s.src/build
if exist c2s_obj.7z del /s /q c2s_obj.7z
shell: cmd
- name: Process ENV
id: process_env
run: |
for mask_value in $(C:/jq-win64.exe -r ".[]" $GITHUB_WORKSPACE/../../../mask_env_values.json); do
echo "add mask for $mask_value";
echo "::add-mask::$mask_value";
done
shell: bash
- name: Prepare Env
uses: ./c2s.src/devops/actions/prepare_env_win
- name: Configure
timeout-minutes: 120
run: |
cd c2s.src
mkdir build
cd build
cmake \
-G Ninja \
-DLLVM_ENABLE_PROJECTS="clang" \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_TARGETS_TO_BUILD="X86;NVPTX" \
-DLLVM_ENABLE_TERMINFO=OFF \
-DLLVM_ENABLE_ASSERTIONS=ON \
-DCMAKE_C_COMPILER="$DPCPP_INSTALL_PREFIX/bin/icx.exe" \
-DCMAKE_CXX_COMPILER="$DPCPP_INSTALL_PREFIX/bin/icx.exe" \
-DCMAKE_INSTALL_PREFIX=$PWD/../../c2s.obj \
../llvm
shell: bash
- name: Build
timeout-minutes: 120
run: |
cd c2s.src/build
ninja install-c2s
shell: bash
- id: Echo-Build-Success
run: echo "::set-output name=build_success::true"
- name: Pack Build
shell: cmd
run: |
C:\7-Zip\7z.exe a c2s_obj.7z c2s.obj
C:\7-Zip\7z.exe a c2s_build.7z c2s.src/build
- name: Upload Results
uses: actions/upload-artifact@v4
with:
name: SYCLomatic_Win_${{ github.sha }}
path: c2s_obj.7z
- name: Upload Results Build
uses: actions/upload-artifact@v4
with:
name: SYCLomatic_Win_build_${{ github.sha }}
path: c2s_build.7z
windows-lit:
name: windows-lit
runs-on: win_build_sc
needs: [windows-build]
if: |
needs.windows-build.outputs.build_success == 'true' && github.event.pull_request.draft == false
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
path: c2s.src
- name: Cleanup Workspace
run: |
if exist c2s.obj rd /s /q c2s.obj
if exist c2s.src/build rd /s /q c2s.src/build
if exist c2s_obj.7z del /s /q c2s_obj.7z
shell: cmd
- name: Download Results
uses: actions/download-artifact@v4
with:
name: SYCLomatic_Win_${{ github.sha }}
- name: Download Results Build
uses: actions/download-artifact@v4
with:
name: SYCLomatic_Win_build_${{ github.sha }}
- name: Extract Build
shell: cmd
run: |
C:\7-Zip\7z.exe x -y c2s_obj.7z
C:\7-Zip\7z.exe x -y c2s_build.7z
- name: Process ENV
id: process_env
run: |
for mask_value in $(C:/jq-win64.exe -r ".[]" $GITHUB_WORKSPACE/../../../mask_env_values.json); do
echo "add mask for $mask_value";
echo "::add-mask::$mask_value";
done
shell: bash
- name: Prepare Env
uses: ./c2s.src/devops/actions/prepare_env_win
- name: Configure
timeout-minutes: 120
run: |
cd c2s.src/build
find . -name CMakeCache.txt -delete
cmake \
-G Ninja \
-DLLVM_ENABLE_PROJECTS="clang" \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_TARGETS_TO_BUILD="X86;NVPTX" \
-DLLVM_ENABLE_TERMINFO=OFF \
-DLLVM_ENABLE_ASSERTIONS=ON \
-DCMAKE_C_COMPILER="$DPCPP_INSTALL_PREFIX/bin/icx.exe" \
-DCMAKE_CXX_COMPILER="$DPCPP_INSTALL_PREFIX/bin/icx.exe" \
-DCMAKE_INSTALL_PREFIX=$PWD/../../c2s.obj \
../llvm
shell: bash
- name: Lit
run: |
cd c2s.src/build
ninja check-clang-c2s -j8
shell: bash
- name: Set_CUDA_Env8.0
run: |
echo "CUDA_PATH=$CUDAROOT/v8.0" >> $GITHUB_ENV
shell: bash
- name: Lit_CUDA8.0
run: |
cd c2s.src/build
rm -r tools/clang/test/dpct
ninja check-clang-c2s -j8
shell: bash
- name: Set_CUDA_Env9.2
run: |
echo "CUDA_PATH=$CUDAROOT/v9.2" >> $GITHUB_ENV
shell: bash
- name: Lit_CUDA9.2
run: |
cd c2s.src/build
rm -r tools/clang/test/dpct
ninja check-clang-c2s -j8
- name: Set_CUDA_Env10.2
run: |
echo "CUDA_PATH=$CUDAROOT/v10.2" >> $GITHUB_ENV
shell: bash
- name: Lit_CUDA10.2
run: |
cd c2s.src/build
rm -r tools/clang/test/dpct
ninja check-clang-c2s -j8
- name: Set_CUDA_Env11.8
run: |
echo "CUDA_PATH=$CUDAROOT/v11.8" >> $GITHUB_ENV
shell: bash
- name: Lit_CUDA11.8
run: |
cd c2s.src/build
rm -r tools/clang/test/dpct
ninja check-clang-c2s -j8
windows-test:
name: windows-test-${{ matrix.test_suite }}-cpu
runs-on: win_build_sc
needs: [windows-build]
if: |
needs.windows-build.outputs.build_success == 'true' && github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
include:
- test_suite: user_guide_samples
- test_suite: regressions
- test_suite: samples
- test_suite: api_coverage
- test_suite: behavior_tests
steps:
- uses: actions/checkout@v4
with:
path: c2s.src
- name: Checkout Test Repo
env:
FACELESS_TOKEN: ${{ secrets.GH_CI_NSTESTER_TOKEN }}
run: |
if exist test_repo rd /s /q test_repo
git clone https://github.com/oneapi-src/SYCLomatic-test.git test_repo -b SYCLomatic
shell: cmd
- name: Cleanup Workspace
run: |
if exist c2s.obj rd /s /q c2s.obj
if exist c2s.src/build rd /s /q c2s.src/build
if exist c2s_obj.7z del /s /q c2s_obj.7z
shell: cmd
- name: Download Build
uses: actions/download-artifact@v4
with:
name: SYCLomatic_Win_${{ github.sha }}
- name: Extract Build
shell: cmd
run: |
C:\7-Zip\7z.exe x -y c2s_obj.7z
- name: Process ENV
id: process_env
run: |
for mask_value in $(C:/jq-win64.exe -r ".[]" $GITHUB_WORKSPACE/../../../mask_env_values.json); do
echo "add mask for $mask_value";
echo "::add-mask::$mask_value";
done
shell: bash
- name: Prepare Env
timeout-minutes: 60
uses: ./c2s.src/devops/actions/prepare_env_win
- name: Run testing option_cpu
timeout-minutes: 600
shell: bash
run: |
cd test_repo
python run_test.py --suite ${{ matrix.test_suite }} --option option_cpu
echo $PWD
- name: Run testing option_usmnone_cpu
if: success() || failure()
timeout-minutes: 600
shell: bash
run: |
cd test_repo
python run_test.py --suite ${{ matrix.test_suite }} --option option_usmnone_cpu
echo $PWD