Update .github/workflows/nightly_tests.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Andrzej Janik
2025-07-24 16:03:45 -07:00
committed by GitHub
parent 295d7eeada
commit 8b8f59eb8a

View File

@ -33,7 +33,7 @@ jobs:
pids=()
exit_codes=()
for i in $(seq 0 $((${{ env.TEST_THREADS }} - 1))); do
cargo run -r -- zluda/libcuda.so.1 --shard-index $i --shard-count ${{ env.TEST_THREADS }} &> output_$i.log &
cargo run -r -- zluda/libcuda.so.1 --shard-index $i --shard-count ${{ env.TEST_THREADS }} > output_$i.log 2>&1 &
pids+=($!)
done
for pid in "${pids[@]}"; do