From 43e5b4d406132a8375dd9ed4d327ae1215595a24 Mon Sep 17 00:00:00 2001 From: William Freudenberger Date: Wed, 10 Apr 2024 16:19:43 +0200 Subject: [PATCH] wip 3: use du instead of ll debug --- ci/run-check.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/run-check.sh b/ci/run-check.sh index 0bbfd8ade8..3846bb47f6 100755 --- a/ci/run-check.sh +++ b/ci/run-check.sh @@ -19,12 +19,11 @@ case $TARGET in test-integration) # TODO: Remove before merging PR - ls target/debug/build/runtime-integration-tests-*/out - ls target/debug/build/runtime-integration-tests-*/out/liquidity-pools + du -h target/debug/build/runtime-integration-tests-* rm -rf target/debug/deps/runtime_integration_tests-* rm -rf target/debug/build/runtime-integration* git submodule update - ll runtime/integration-tests/submodules/liquidity-pools + du -h runtime/integration-tests/submodules/liquidity-pools cargo test --release --package runtime-integration-tests --features fast-runtime ;;