diff --git a/.github/workflows/sanity-checks.yml b/.github/workflows/sanity-checks.yml index 1451edaaf1..7712c9e90e 100644 --- a/.github/workflows/sanity-checks.yml +++ b/.github/workflows/sanity-checks.yml @@ -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 diff --git a/ci/run-check.sh b/ci/run-check.sh index 2d25335f86..135f6517c8 100755 --- a/ci/run-check.sh +++ b/ci/run-check.sh @@ -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 @@ -46,7 +46,7 @@ case $TARGET in fi done wait $CARGO_PID - cat $OUTPUT_FILE + # cat $OUTPUT_FILE ;; lint-fmt)