Skip to content

Commit

Permalink
remove the idea of output file
Browse files Browse the repository at this point in the history
  • Loading branch information
gpmayorga committed Apr 29, 2024
1 parent 69209fa commit e6c0a4e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ci/run-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e6c0a4e

Please sign in to comment.