Skip to content

Commit

Permalink
#12: store sanitizer output as an artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Feb 9, 2021
1 parent f09ce94 commit 05868f8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/dockerimage-vt-clang-5.0-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,12 @@ jobs:
run: docker-compose pull --ignore-pull-failures vt-base
- name: Run sanitizer
shell: bash
run: docker-compose run vt-base
run: |
docker-compose run vt-base 2> >(tee -a stderr.log >&2) &&
echo "Unique fields detected as not serialized:" &&
sort -u stderr.log | tee sanitizer.log
- name: Archive sanitizer log
uses: actions/upload-artifact@v2
with:
name: sanitizer.log
path: sanitizer.log

0 comments on commit 05868f8

Please sign in to comment.