94
94
- name : zip up tracked files
95
95
run : git archive -o artifacts/tracked.tar.gz HEAD
96
96
- name : upload tracked files and build artifacts
97
- uses : actions/upload-artifact@v2
97
+ uses : actions/upload-artifact@v3
98
98
with :
99
99
name : windows-artifacts
100
100
path : artifacts
@@ -108,7 +108,7 @@ jobs:
108
108
nr : [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
109
109
steps :
110
110
- name : download tracked files and build artifacts
111
- uses : actions/download-artifact@v2
111
+ uses : actions/download-artifact@v3
112
112
with :
113
113
name : windows-artifacts
114
114
path : ${{github.workspace}}
@@ -125,7 +125,7 @@ jobs:
125
125
run : ci/print-test-failures.sh
126
126
- name : Upload failed tests' directories
127
127
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
128
- uses : actions/upload-artifact@v2
128
+ uses : actions/upload-artifact@v3
129
129
with :
130
130
name : failed-tests-windows
131
131
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -177,7 +177,7 @@ jobs:
177
177
- name : zip up tracked files
178
178
run : git archive -o artifacts/tracked.tar.gz HEAD
179
179
- name : upload tracked files and build artifacts
180
- uses : actions/upload-artifact@v2
180
+ uses : actions/upload-artifact@v3
181
181
with :
182
182
name : vs-artifacts
183
183
path : artifacts
@@ -192,7 +192,7 @@ jobs:
192
192
steps :
193
193
- uses : git-for-windows/setup-git-for-windows-sdk@v1
194
194
- name : download tracked files and build artifacts
195
- uses : actions/download-artifact@v2
195
+ uses : actions/download-artifact@v3
196
196
with :
197
197
name : vs-artifacts
198
198
path : ${{github.workspace}}
@@ -210,7 +210,7 @@ jobs:
210
210
run : ci/print-test-failures.sh
211
211
- name : Upload failed tests' directories
212
212
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
213
- uses : actions/upload-artifact@v2
213
+ uses : actions/upload-artifact@v3
214
214
with :
215
215
name : failed-tests-windows
216
216
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -267,7 +267,7 @@ jobs:
267
267
run : ci/print-test-failures.sh
268
268
- name : Upload failed tests' directories
269
269
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
270
- uses : actions/upload-artifact@v2
270
+ uses : actions/upload-artifact@v3
271
271
with :
272
272
name : failed-tests-${{matrix.vector.jobname}}
273
273
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -299,7 +299,13 @@ jobs:
299
299
shell : bash
300
300
run : ci/print-test-failures.sh
301
301
- name : Upload failed tests' directories
302
- if : failure() && env.FAILED_TEST_ARTIFACTS != ''
302
+ if : failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname != 'linux32'
303
+ uses : actions/upload-artifact@v3
304
+ with :
305
+ name : failed-tests-${{matrix.vector.jobname}}
306
+ path : ${{env.FAILED_TEST_ARTIFACTS}}
307
+ - name : Upload failed tests' directories
308
+ if : failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname == 'linux32'
303
309
uses : actions/upload-artifact@v1
304
310
with :
305
311
name : failed-tests-${{matrix.vector.jobname}}
0 commit comments