20
20
steps :
21
21
22
22
- uses : actions/checkout@v2
23
- - run : ./.github/gha /install_dependencies.sh
23
+ - run : ./.github/scripts /install_dependencies.sh
24
24
- uses : actions/setup-python@v2
25
25
with :
26
26
python-version : 3.6
30
30
env :
31
31
BUILD_TYPE : release
32
32
run : |
33
- source .github/travis /common.sh
34
- ./.github/travis /build.sh
33
+ source .github/scripts /common.sh
34
+ ./.github/scripts /build.sh
35
35
36
36
37
37
Format :
@@ -47,15 +47,15 @@ jobs:
47
47
steps :
48
48
49
49
- uses : actions/checkout@v2
50
- - run : ./.github/gha /install_dependencies.sh
50
+ - run : ./.github/scripts /install_dependencies.sh
51
51
- uses : actions/setup-python@v2
52
52
with :
53
53
python-version : 3.6
54
54
- run : pip install -r requirements.txt
55
55
56
56
- name : Test
57
57
run : |
58
- source .github/travis /common.sh
58
+ source .github/scripts /common.sh
59
59
./dev/${{ matrix.script }}
60
60
61
61
65
65
steps :
66
66
67
67
- uses : actions/checkout@v2
68
- - run : ./.github/gha /install_dependencies.sh
68
+ - run : ./.github/scripts /install_dependencies.sh
69
69
- uses : actions/setup-python@v2
70
70
with :
71
71
python-version : 3.6
75
75
env :
76
76
CMAKE_PARAMS : " -DVTR_ASSERT_LEVEL=3 -DWITH_BLIFEXPLORER=on"
77
77
run : |
78
- source .github/travis /common.sh
79
- ./.github/travis /build.sh
80
- ./.github/travis /unittest.sh
78
+ source .github/scripts /common.sh
79
+ ./.github/scripts /build.sh
80
+ ./.github/scripts /unittest.sh
81
81
82
82
83
83
Warnings :
86
86
steps :
87
87
88
88
- uses : actions/checkout@v2
89
- - run : ./.github/gha /install_dependencies.sh
89
+ - run : ./.github/scripts /install_dependencies.sh
90
90
- uses : actions/setup-python@v2
91
91
with :
92
92
python-version : 3.6
98
98
# We also turn warnings into errors for this target by doing a strict compile
99
99
CMAKE_PARAMS : " -DVTR_ASSERT_LEVEL=3 -DWITH_BLIFEXPLORER=on -DVTR_ENABLE_STRICT_COMPILE=on -DVTR_IPO_BUILD=off"
100
100
run : |
101
- source .github/travis /common.sh
102
- ./.github/travis /build.sh
101
+ source .github/scripts /common.sh
102
+ ./.github/scripts /build.sh
103
103
104
104
105
105
Regression :
@@ -138,7 +138,7 @@ jobs:
138
138
steps :
139
139
140
140
- uses : actions/checkout@v2
141
- - run : ./.github/gha /install_dependencies.sh
141
+ - run : ./.github/scripts /install_dependencies.sh
142
142
- uses : actions/setup-python@v2
143
143
with :
144
144
python-version : 3.6
@@ -148,8 +148,8 @@ jobs:
148
148
env :
149
149
CMAKE_PARAMS : ${{ matrix.params }}
150
150
run : |
151
- source .github/travis /common.sh
152
- ./.github/travis /build.sh
151
+ source .github/scripts /common.sh
152
+ ./.github/scripts /build.sh
153
153
./run_reg_test.py ${{ matrix.suite }} -show_failures -j2
154
154
155
155
@@ -165,7 +165,7 @@ jobs:
165
165
steps :
166
166
167
167
- uses : actions/checkout@v2
168
- - run : ./.github/gha /install_dependencies.sh
168
+ - run : ./.github/scripts /install_dependencies.sh
169
169
- uses : actions/setup-python@v2
170
170
with :
171
171
python-version : 3.6
@@ -177,8 +177,8 @@ jobs:
177
177
BUILD_TYPE : debug
178
178
LSAN_OPTIONS : ' exitcode=42' # Use a non-standard exit code to ensure LSAN errors are detected
179
179
run : |
180
- source .github/travis /common.sh
181
- ./.github/travis /build.sh
180
+ source .github/scripts /common.sh
181
+ ./.github/scripts /build.sh
182
182
# We skip QoR since we are only checking for errors in sanitizer runs
183
183
./run_reg_test.py ${{ matrix.suite }} -show_failures -j2 -skip_qor
184
184
@@ -188,7 +188,7 @@ jobs:
188
188
steps :
189
189
190
190
- uses : actions/checkout@v2
191
- - run : ./.github/gha /install_dependencies.sh
191
+ - run : ./.github/scripts /install_dependencies.sh
192
192
- uses : actions/setup-python@v2
193
193
with :
194
194
python-version : 3.6
@@ -199,8 +199,8 @@ jobs:
199
199
CMAKE_PARAMS : ' -DVTR_ASSERT_LEVEL=3 -DVTR_ENABLE_SANITIZE=on -DVTR_IPO_BUILD=off -DWITH_BLIFEXPLORER=on'
200
200
BUILD_TYPE : debug
201
201
run : |
202
- source .github/travis /common.sh
203
- ./.github/travis /build.sh
202
+ source .github/scripts /common.sh
203
+ ./.github/scripts /build.sh
204
204
./run_reg_test.py odin_reg_basic -show_failures -j2
205
205
206
206
@@ -222,7 +222,7 @@ jobs:
222
222
steps :
223
223
224
224
- uses : actions/checkout@v2
225
- - run : ./.github/gha /install_dependencies.sh
225
+ - run : ./.github/scripts /install_dependencies.sh
226
226
- uses : actions/setup-python@v2
227
227
with :
228
228
python-version : 3.6
@@ -234,8 +234,8 @@ jobs:
234
234
MATRIX_EVAL : ${{ matrix.eval }}
235
235
BUILD_TYPE : ${{ matrix.build }}
236
236
run : |
237
- source .github/travis /common.sh
238
- ./.github/travis /build.sh
237
+ source .github/scripts /common.sh
238
+ ./.github/scripts /build.sh
239
239
240
240
241
241
Coverity :
@@ -253,7 +253,7 @@ jobs:
253
253
steps :
254
254
255
255
- uses : actions/checkout@v2
256
- - run : ./.github/gha /install_dependencies.sh
256
+ - run : ./.github/scripts /install_dependencies.sh
257
257
- uses : actions/setup-python@v2
258
258
with :
259
259
python-version : 3.6
@@ -265,5 +265,5 @@ jobs:
265
265
_COVERITY_URL : ' https://scan.coverity.com/download/linux64'
266
266
_COVERITY_MD5 : ' d0d7d7df9d6609e578f85096a755fb8f'
267
267
run : |
268
- source .github/travis /common.sh
269
- ./.github/travis /build.sh
268
+ source .github/scripts /common.sh
269
+ ./.github/scripts /build.sh
0 commit comments