File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -54,19 +54,27 @@ jobs:
54
54
# for FILE in build/fuzz/quick-lint-js-fuzz-*; do echo running: $FILE; $FILE fuzz-tmp -runs=100 || exit 1; done
55
55
./build/fuzz/quick-lint-js-fuzz-lex corpus/test -max_total_time=5 -verbosity=0 -reload=0 -artifact_prefix=$ARTIFACT_PREFIX -jobs=20 -workers=1
56
56
57
- - name : package artifacts
57
+ # - name: package artifacts
58
+ # if: failure()
59
+ # # TODO: remove the 'v' flag?
60
+ # run: |
61
+ # mkdir -p artifact-upload
62
+ # tar -cvJf artifact-upload/artifacts.tar.xz $ARTIFACT_PREFIX*
63
+
64
+ - name : move artifacts & logs
58
65
if : failure()
59
66
# TODO: remove the 'v' flag?
60
67
run : |
61
- mkdir -p xxx
62
- tar -cvJf xxx/artifacts.tar.xz $ARTIFACT_PREFIX*
68
+ mkdir -p artifact-upload
69
+ cp $ARTIFACT_PREFIX* artifact-upload/
70
+ cp fuzz-* artifact-upload/
63
71
64
72
- name : save artifacts
65
73
if : failure()
66
74
uses : actions/upload-artifact@v3
67
75
with :
68
76
name : fuzz-artifacts-${{ github.run_number }}
69
- path : xxx
77
+ path : artifact-upload
70
78
71
79
- name : test always
72
80
if : always()
You can’t perform that action at this time.
0 commit comments