Move docker prune cmd outside of api common install shell script

Signed-off-by: danfengliu <danfengl@vmware.com>
This commit is contained in:
danfengliu 2020-05-22 04:06:25 +00:00
parent 2ff0638f8b
commit ba48e55e4e
2 changed files with 2 additions and 2 deletions

View File

@ -148,6 +148,7 @@ jobs:
cd src/github.com/goharbor/harbor
env
df -h
docker system prune -a -f
bash ./tests/showtime.sh ./tests/ci/api_common_install.sh $IP DB
- name: script
run: |

View File

@ -4,7 +4,6 @@ set -x
set +e
sudo rm -fr /data/*
sudo mkdir -p /data
docker system prune -a -f
DIR="$(cd "$(dirname "$0")" && pwd)"
set -e
@ -38,4 +37,4 @@ for((i=1;i<=30;i++)); do
echo $i waiting 10 seconds...
sleep 10
curl -k -L -f 127.0.0.1/api/v2.0/systeminfo && break
done
done