Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rol1510 committed Jan 20, 2024
1 parent 7c6ae7e commit 0a0930e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
shell: bash

- name: build
if: failure()
run: ninja -C build quick-lint-js-fuzz-lex

- name: setup cache
Expand All @@ -49,6 +50,7 @@ jobs:
# tar -xJf corpus.tar.xz

- name: run
if: failure()
run: |
mkdir -p corpus/test
# for FILE in build/fuzz/quick-lint-js-fuzz-*; do echo running: $FILE; $FILE fuzz-tmp -runs=100 || exit 1; done
Expand All @@ -63,15 +65,15 @@ jobs:
# tar -cvJf artifact-upload/artifacts.tar.xz $ARTIFACT_PREFIX*

- name: move artifacts & logs
if: failure()
# if: failure()
# TODO: remove the 'v' flag?
run: |
mkdir -p artifact-upload
cp $ARTIFACT_PREFIX* artifact-upload/
cp fuzz-* artifact-upload/
- name: save artifacts
if: failure()
# if: failure()
uses: actions/upload-artifact@v3
with:
name: fuzz-artifacts-${{ github.run_number }}
Expand Down

0 comments on commit 0a0930e

Please sign in to comment.