32
32
make build
33
33
make build_macos_x64
34
34
- name : Upload artifacts
35
-
35
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
36
36
with :
37
37
name : build-linux-and-macos-x64
38
38
if-no-files-found : error
61
61
run : |
62
62
make build_macos_arm64
63
63
- name : Upload artifacts
64
-
64
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
65
65
with :
66
66
name : build-macos-arm64
67
67
if-no-files-found : error
@@ -106,7 +106,7 @@ jobs:
106
106
- name : Build uploader binary on alpine
107
107
run : make build_alpine
108
108
- name : Upload artifacts
109
-
109
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
110
110
with :
111
111
name : build-alpine
112
112
if-no-files-found : error
@@ -134,7 +134,7 @@ jobs:
134
134
$ErrorActionPreference="Stop"
135
135
npm run build; npm run build-windows
136
136
- name : Upload artifacts
137
-
137
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
138
138
with :
139
139
name : build-windows
140
140
if-no-files-found : error
@@ -151,7 +151,7 @@ jobs:
151
151
- uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
152
152
with :
153
153
node-version : 18
154
-
154
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
155
155
with :
156
156
name : build-linux-and-macos-x64
157
157
- name : Confirm that linux uploader binary is static
@@ -171,7 +171,7 @@ jobs:
171
171
out/codecov-linux -F linux -Z -t ${{ secrets.CODECOV_TOKEN }}
172
172
out/codecov-linux -F "-linux" -Z -t ${{ secrets.CODECOV_TOKEN }}
173
173
- name : Upload artifacts
174
-
174
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
175
175
with :
176
176
name : test-linux
177
177
if-no-files-found : error
@@ -187,7 +187,7 @@ jobs:
187
187
- uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
188
188
with :
189
189
node-version : 18
190
-
190
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
191
191
with :
192
192
name : build-linux-and-macos-x64
193
193
- name : Remove .git directory
@@ -203,7 +203,7 @@ jobs:
203
203
run : |
204
204
out/codecov-linux -F linux-without-git -Z -t ${{ secrets.CODECOV_TOKEN }}
205
205
- name : Upload artifacts
206
-
206
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
207
207
with :
208
208
name : test-linux-without-git
209
209
if-no-files-found : error
@@ -216,7 +216,7 @@ jobs:
216
216
steps :
217
217
- name : Checkout
218
218
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
219
-
219
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
220
220
with :
221
221
name : build-linux-and-macos-x64
222
222
- name : Remove test coverage files
@@ -233,7 +233,7 @@ jobs:
233
233
run : |
234
234
out/codecov-macos-x64 -F macos-x64 -v -Z -t ${{ secrets.CODECOV_TOKEN }}
235
235
- name : Upload artifacts
236
-
236
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
237
237
with :
238
238
name : test-macos-x64
239
239
if-no-files-found : error
@@ -246,7 +246,7 @@ jobs:
246
246
steps :
247
247
- name : Checkout
248
248
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
249
-
249
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
250
250
with :
251
251
name : build-linux-and-macos-x64
252
252
- name : Remove .git directory
@@ -262,7 +262,7 @@ jobs:
262
262
run : |
263
263
out/codecov-macos-x64 -F macos-x64-without-git -v -Z -t ${{ secrets.CODECOV_TOKEN }}
264
264
- name : Upload artifacts
265
-
265
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
266
266
with :
267
267
name : test-macos-x64-without-git
268
268
if-no-files-found : error
@@ -275,7 +275,7 @@ jobs:
275
275
steps :
276
276
- name : Checkout
277
277
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
278
-
278
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
279
279
with :
280
280
name : build-macos-arm64
281
281
- name : Remove test coverage files
@@ -292,7 +292,7 @@ jobs:
292
292
run : |
293
293
out/codecov-macos-arm64 -F macos-arm64 -v -Z -t ${{ secrets.CODECOV_TOKEN }}
294
294
- name : Upload artifacts
295
-
295
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
296
296
with :
297
297
name : test-macos-arm64
298
298
if-no-files-found : error
@@ -305,7 +305,7 @@ jobs:
305
305
steps :
306
306
- name : Checkout
307
307
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
308
-
308
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
309
309
with :
310
310
name : build-macos-arm64
311
311
- name : Remove .git directory
@@ -321,7 +321,7 @@ jobs:
321
321
run : |
322
322
out/codecov-macos-arm64 -F macos-arm64-without-git -v -Z -t ${{ secrets.CODECOV_TOKEN }}
323
323
- name : Upload artifacts
324
-
324
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
325
325
with :
326
326
name : test-macos-arm64-without-git
327
327
if-no-files-found : error
@@ -339,7 +339,7 @@ jobs:
339
339
apk add git
340
340
- name : Checkout
341
341
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
342
-
342
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
343
343
with :
344
344
name : build-alpine
345
345
- name : Remove test coverage files
@@ -355,7 +355,7 @@ jobs:
355
355
- name : Run Alpine binary (upload)
356
356
run : out/codecov-alpine -F alpine -v -Z -t ${{ secrets.CODECOV_TOKEN }}
357
357
- name : Upload artifacts
358
-
358
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
359
359
with :
360
360
name : test-alpine
361
361
if-no-files-found : error
@@ -373,7 +373,7 @@ jobs:
373
373
apk add git
374
374
- name : Checkout
375
375
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
376
-
376
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
377
377
with :
378
378
name : build-alpine
379
379
- name : Remove .git directory
@@ -391,7 +391,7 @@ jobs:
391
391
- name : Run Alpine binary (upload)
392
392
run : out/codecov-alpine -F alpine-without-git -v -Z -t ${{ secrets.CODECOV_TOKEN }}
393
393
- name : Upload artifacts
394
-
394
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
395
395
with :
396
396
name : test-alpine-without-git
397
397
if-no-files-found : error
@@ -409,7 +409,7 @@ jobs:
409
409
apk add git squid
410
410
- name : Checkout
411
411
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
412
-
412
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
413
413
with :
414
414
name : build-alpine
415
415
- name : Start squid
@@ -424,7 +424,7 @@ jobs:
424
424
- name : Run Alpine binary (upload)
425
425
run : out/codecov-alpine -U http://localhost:3128 -F alpine-without-git -v -Z -t ${{ secrets.CODECOV_TOKEN }}
426
426
- name : Upload artifacts
427
-
427
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
428
428
with :
429
429
name : test-alpine-proxy
430
430
if-no-files-found : error
@@ -437,7 +437,7 @@ jobs:
437
437
steps :
438
438
- name : Checkout
439
439
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
440
-
440
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
441
441
with :
442
442
name : build-windows
443
443
- name : Remove test coverage files
@@ -459,7 +459,7 @@ jobs:
459
459
.\out\codecov.exe -F windows -v -Z -t ${{ secrets.CODECOV_TOKEN }}
460
460
shell : cmd
461
461
- name : Upload artifacts
462
-
462
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
463
463
with :
464
464
name : test-windows
465
465
if-no-files-found : error
@@ -472,7 +472,7 @@ jobs:
472
472
steps :
473
473
- name : Checkout
474
474
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
475
-
475
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
476
476
with :
477
477
name : build-windows
478
478
- name : Remove .git directory
@@ -496,7 +496,7 @@ jobs:
496
496
.\out\codecov.exe -F windows-without-git -v -Z -t ${{ secrets.CODECOV_TOKEN }}
497
497
shell : cmd
498
498
- name : Upload artifacts
499
-
499
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
500
500
with :
501
501
name : test-windows-without-git
502
502
if-no-files-found : error
@@ -524,7 +524,7 @@ jobs:
524
524
with :
525
525
node-version : 18
526
526
cache : ' npm'
527
-
527
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
528
528
- name : List files
529
529
run : tree
530
530
- name : Cat output_alpine.txt
0 commit comments