Skip to content

Commit

Permalink
remove concurrency, add logs to output
Browse files Browse the repository at this point in the history
  • Loading branch information
gpmayorga committed Apr 29, 2024
1 parent 6176d37 commit 47c8b76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sanity-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
name: Sanity checks
concurrency:
group: 'tests-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
cancel-in-progress: false
permissions:
id-token: write
contents: read
Expand Down
6 changes: 3 additions & 3 deletions ci/run-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ case $TARGET in
# ;;

test-integration)
OUTPUT_FILE="cargo_test_output.txt"
cargo test --release --package runtime-integration-tests --features fast-runtime > $OUTPUT_FILE 2>&1 &
# OUTPUT_FILE="cargo_test_output.txt"
cargo test --release --package runtime-integration-tests --features fast-runtime &
CARGO_PID=$!
BUILD_DISCOVERED=false
DEPS_DISCOVERED=false
Expand All @@ -46,7 +46,7 @@ case $TARGET in
fi
done
wait $CARGO_PID
cat $OUTPUT_FILE
# cat $OUTPUT_FILE
;;

lint-fmt)
Expand Down

0 comments on commit 47c8b76

Please sign in to comment.