From 145d6c8e8c7ec19ae82bc4b892d7f196d9e09174 Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Wed, 11 Nov 2020 07:10:31 +0100 Subject: [PATCH] Use different filenames for BS and CS UBsan error logs --- .github/workflows/ubsan-arm.yml | 4 ++-- .github/workflows/ubsan-x86.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ubsan-arm.yml b/.github/workflows/ubsan-arm.yml index 4aeb9d62a3..2fad70cc91 100644 --- a/.github/workflows/ubsan-arm.yml +++ b/.github/workflows/ubsan-arm.yml @@ -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 diff --git a/.github/workflows/ubsan-x86.yml b/.github/workflows/ubsan-x86.yml index 977c962e93..0abc86246c 100644 --- a/.github/workflows/ubsan-x86.yml +++ b/.github/workflows/ubsan-x86.yml @@ -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