From e6c0a4ee673a48c845f9ee47a77415ae010f2351 Mon Sep 17 00:00:00 2001 From: Guillermo Perez Date: Mon, 29 Apr 2024 19:27:07 +0200 Subject: [PATCH] remove the idea of output file --- ci/run-check.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ci/run-check.sh b/ci/run-check.sh index 392f0dd78a..6655b86c2b 100755 --- a/ci/run-check.sh +++ b/ci/run-check.sh @@ -18,20 +18,19 @@ case $TARGET in # ;; test-integration) - OUTPUT_FILE="cargo_test_output.txt" - cargo test --release --package runtime-integration-tests --features fast-runtime | tee $OUTPUT_FILE & + cargo test --release --package runtime-integration-tests --features fast-runtime & CARGO_PID=$! BUILD_DISCOVERED=false DEPS_DISCOVERED=false while true; do if [ -d "./target/" ]; then if ls ./target/release/build/runtime-integration* 1> /dev/null 2>&1; then - ls -la ./target/release/build/runtime-integration*/out/ + ls -l ./target/release/build/runtime-integration*/out/ echo "release build directory exists." BUILD_DISCOVERED=true fi if [ -d "./target/release/deps" ] && ls ./target/release/deps/runtime_integration* 1> /dev/null 2>&1; then - ls -la ./target/release/deps/runtime_integration*/out/ + ls -l ./target/release/deps/runtime_integration*/out/ echo "Deps build directory exists." DEPS_DISCOVERED=true fi