-
Notifications
You must be signed in to change notification settings - Fork 91
224 lines (198 loc) · 6.45 KB
/
ci_lin.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
name: Linux 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:
clang-format:
runs-on: build
steps:
- name: 'PR commits + 1'
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
fetch-depth: ${{ env.PR_FETCH_DEPTH }}
- name: Run clang-format
uses: ./devops/actions/clang-format-SYCLomatic
linux-build-lit:
name: linux-build-lit
if: github.event.pull_request.draft == false
runs-on: build
outputs:
build_success: ${{ steps.Echo-Build-Success.outputs.build_success }}
strategy:
fail-fast: false
steps:
- name: Process ENV
id: process_env
run: |
for mask_value in $(jq -r '.[]' $GITHUB_WORKSPACE/../../../../mask_env_values.json); do
echo "add mask for $mask_value";
echo "::add-mask::$mask_value";
done
- name: Cleanup Workspace
shell: bash
run: |
rm -rf ${{ github.workspace }}/*
- uses: actions/checkout@v2
with:
path: c2s.src
- name: Prepare Env
uses: ./c2s.src/devops/actions/prepare_env_lin
- name: Configure
timeout-minutes: 60
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 \
-DCMAKE_CXX_COMPILER=$DPCPP_INSTALL_PREFIX/bin/icpx \
-DCMAKE_INSTALL_PREFIX=$PWD/../../c2s.obj \
../llvm
- name: Build
timeout-minutes: 120
run: |
mkdir c2s.obj
cd c2s.src/build
ninja install-c2s
- id: Echo-Build-Success
run: echo "::set-output name=build_success::true"
- name: Pack Results
run: tar -cJf c2s_obj.tar.xz -C $GITHUB_WORKSPACE/c2s.obj ./
- name: Upload Results
uses: actions/upload-artifact@v4
with:
name: SYCLomatic_linux_${{ github.sha }}
path: c2s_obj.tar.xz
- name: Lit
if: |
steps.Echo-Build-Success.outputs.build_success == 'true'
run: |
cd c2s.src/build
ninja check-clang-c2s
- name: Lit_CUDA8.0
if: |
steps.Echo-Build-Success.outputs.build_success == 'true'
run: |
cd c2s.src/build
rm -rf tools/clang/test/dpct
CUDA_PATH=$CUDAROOT/cuda-8.0 ninja check-clang-c2s
- name: Lit_CUDA9.2
if: |
steps.Echo-Build-Success.outputs.build_success == 'true'
run: |
cd c2s.src/build
rm -rf tools/clang/test/dpct
CUDA_PATH=$CUDAROOT/cuda-9.2 ninja check-clang-c2s
- name: Lit_CUDA10.2
if: |
steps.Echo-Build-Success.outputs.build_success == 'true'
run: |
cd c2s.src/build
rm -rf tools/clang/test/dpct
CUDA_PATH=$CUDAROOT/cuda-10.2 ninja check-clang-c2s
- name: Lit_CUDA11.8
if: |
steps.Echo-Build-Success.outputs.build_success == 'true'
run: |
cd c2s.src/build
rm -rf tools/clang/test/dpct
CUDA_PATH=$CUDAROOT/cuda-11.8 ninja check-clang-c2s
- name: BUILD_LIT
if: |
steps.Echo-Build-Success.outputs.build_success == 'true'
run: |
cd c2s.src/build
rm -rf tools/clang/test/dpct
BUILD_LIT=TRUE ninja check-clang-c2s
linux-test:
name: linux-test-${{ matrix.test_suite }}-cpu
runs-on: test
needs: [linux-build-lit]
if: |
needs.linux-build-lit.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: help_function
- test_suite: features-usm
- test_suite: features-usmnone
- test_suite: api_coverage
- test_suite: behavior_tests
steps:
- name: Process ENV
id: process_env
run: |
for mask_value in $(jq -r '.[]' $GITHUB_WORKSPACE/../../../../mask_env_values.json); do
echo "add mask for $mask_value";
echo "::add-mask::$mask_value";
done
- name: Cleanup Workspace
shell: bash
run: |
rm -rf ${{ github.workspace }}/*
- uses: actions/checkout@v2
with:
path: c2s.src
- name: Checkout Test Repo
#uses: actions/checkout@v2
#with:
# repository: XXXXX
# path: test_repo
env:
FACELESS_TOKEN: ${{ secrets.GH_CI_NSTESTER_TOKEN }}
run: |
git clone https://[email protected]/oneapi-src/SYCLomatic-test.git test_repo -b SYCLomatic
- uses: actions/download-artifact@v4
with:
name: SYCLomatic_linux_${{ github.sha }}
- name: Unpack artifact
shell: bash
run: |
mkdir $GITHUB_WORKSPACE/c2s.obj
tar -xvf c2s_obj.tar.xz -C $GITHUB_WORKSPACE/c2s.obj
- name: Prepare Env
timeout-minutes: 60
uses: ./c2s.src/devops/actions/prepare_env_lin
with:
c2s_obj_dir: "c2s.obj"
- name: Run testing option_cpu
if: matrix.test_suite != 'features-usmnone'
env:
SUITE: ${{ matrix.test_suite }}
timeout-minutes: 600
shell: bash
run: |
cd test_repo
time python run_test.py --suite ${SUITE%-*} --option option_cpu
echo $PWD
- name: Run testing option_usmnone_cpu
if: (matrix.test_suite != 'help_function' && matrix.test_suite != 'features-usm') && (success() || failure())
env:
SUITE: ${{ matrix.test_suite }}
timeout-minutes: 600
shell: bash
run: |
cd test_repo
time python run_test.py --suite ${SUITE%-*} --option option_usmnone_cpu
echo $PWD