forked from Archive/PX4-Autopilot
allways pull latest container before running tests
This commit is contained in:
parent
0282321304
commit
dab7d1f828
|
@ -11,10 +11,14 @@ if [ -z "$WORKSPACE" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Pulling latest image
|
# Pulling latest image
|
||||||
# TODO: remove old one to save space, until then, update manually
|
echo "===> pull latest Docker image"
|
||||||
#echo "===> pull latest Docker image"
|
docker pull px4io/px4-dev-ros
|
||||||
#docker pull px4io/sitl-testing
|
|
||||||
#echo "<==="
|
# removing some images might fail
|
||||||
|
set +e
|
||||||
|
docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
|
||||||
|
set -e
|
||||||
|
echo "<==="
|
||||||
|
|
||||||
#
|
#
|
||||||
# Running SITL testing container
|
# Running SITL testing container
|
||||||
|
|
Loading…
Reference in New Issue