Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jul 17, 2023
1 parent 293fdb2 commit bf7f535
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions planemo_ci_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -exo pipefail

# function running an infinite loop pruning (unused) docker images
function background_prune_docker {
while 1; do
while true; do
docker system prune --all --volumes --force &>> /tmp/prune
sleep 60
done
Expand Down Expand Up @@ -162,8 +162,6 @@ if [ "$MODE" == "test" ]; then
cat tool_list_chunk.txt

background_prune_docker &
sleep 60

PRUNE_PID=$!
ps aux
cat /tmp/prune
Expand Down Expand Up @@ -196,8 +194,8 @@ if [ "$MODE" == "test" ]; then
mv tool_test_output.json tool_test_output.html upload/

cat /tmp/prune
# ps aux
# kill "$PRUNE_PID"
ps aux
kill "$PRUNE_PID"
fi

# combine reports mode
Expand Down

0 comments on commit bf7f535

Please sign in to comment.