Skip to content

Commit

Permalink
Separate out sanitizer runs
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Oct 10, 2024
1 parent 1a3861d commit ac657b9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ jobs:
env:
RUST_LOG: trace
run: |

Check failure on line 113 in .github/workflows/check.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2078:error:1:6: This expression is constant. Did you forget a $ somewhere?
if [ "${{ env.DUMP_SIMULATION_SEEDS }}" ]; then
export DUMP_SIMULATION_SEEDS=${{ env.DUMP_SIMULATION_SEEDS }}/sanitizer
fi
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
TARGET="x86_64-unknown-linux-gnu"
SANITIZERS="address thread leak"
Expand All @@ -126,14 +129,14 @@ jobs:
- name: Print simulation seeds
if: env.DUMP_SIMULATION_SEEDS
run: ls -1 ${{ env.DUMP_SIMULATION_SEEDS }}
run: find ${{ env.DUMP_SIMULATION_SEEDS }}

- name: Save simulation seeds artifact
if: env.DUMP_SIMULATION_SEEDS
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: simulation-seeds-${{ matrix.os }}-${{ matrix.rust-toolchain }}-${{ matrix.type }}
path: /tmp/simulation-seeds
path: ${{ env.DUMP_SIMULATION_SEEDS }}
compression-level: 9

bench:
Expand Down

0 comments on commit ac657b9

Please sign in to comment.