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