Skip to content

Commit

Permalink
wip 4: graceful panic handler ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli committed Apr 10, 2024
1 parent 43e5b4d commit 5ee17c9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions ci/run-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,18 @@ case $TARGET in

test-integration)
# TODO: Remove before merging PR
du -h target/debug/build/runtime-integration-tests-*
files=$(ls target/debug/build/runtime-integration-tests-* 2> /dev/null)
if [ -n "$files" ]; then
du -h $files
fi
rm -rf target/debug/deps/runtime_integration_tests-*
rm -rf target/debug/build/runtime-integration*
git submodule update
du -h runtime/integration-tests/submodules/liquidity-pools

files=$(ls runtime/integration-tests/submodules/liquidity-pools 2> /dev/null)
if [ -n "$files" ]; then
du -h $files
fi

cargo test --release --package runtime-integration-tests --features fast-runtime
;;

Expand Down

0 comments on commit 5ee17c9

Please sign in to comment.