Use different filenames for BS and CS UBsan error logs

This commit is contained in:
Paulo Matos 2020-11-11 07:10:31 +01:00
parent 7975bdf25d
commit 145d6c8e8c
2 changed files with 4 additions and 4 deletions

View File

@ -179,11 +179,11 @@ jobs:
run: raco test -l tests/db/all-tests | tee logs/db-all-tests.log
- name: Gather runtime errors
run: |
grep 'runtime error' logs/*.log > runtime-errors-${{ matrix.arch }}_git${{ github.sha }}.log || true
grep 'runtime error' logs/*.log > runtime-errors-${{ matrix.arch }}-cs_git${{ github.sha }}.log || true
test ! -s runtime-errors-${{ matrix.arch }}_git${{ github.sha }}.log
- uses: actions/upload-artifact@v2
if: failure()
with:
name: runtime-errors-${{ matrix.arch }}-cs_git${{ github.sha }}
path: runtime-errors-${{ matrix.arch }}_git${{ github.sha }}.log
path: runtime-errors-${{ matrix.arch }}-cs_git${{ github.sha }}.log

View File

@ -163,11 +163,11 @@ jobs:
run: raco test -l tests/db/all-tests | tee logs/db-all-tests.log
- name: Gather runtime errors
run: |
grep 'runtime error' logs/*.log > runtime-errors_git${{ github.sha }}.log || true
grep 'runtime error' logs/*.log > runtime-errors-cs_git${{ github.sha }}.log || true
test ! -s runtime-errors_git${{ github.sha }}.log
- uses: actions/upload-artifact@v2
if: failure()
with:
name: runtime-errors-cs_git${{ github.sha }}
path: runtime-errors_git${{ github.sha }}.log
path: runtime-errors-cs_git${{ github.sha }}.log