update image before running tests

This commit is contained in:
Kay0u 2020-03-19 23:52:39 +01:00
parent 24dde58b94
commit e785931656
No known key found for this signature in database
GPG key ID: 7FF262C033518333

View file

@ -87,6 +87,24 @@ rebuild_base_container()
lxc delete "yunohost-$DEBIAN_VERSION-tmp"
}
update_image() {
image_to_update=$1
# Start and run upgrade
lxc launch "$image_to_update" "$image_to_update-tmp"
lxc exec "$image_to_update-tmp" -- /bin/bash -c "apt-get update"
lxc exec "$image_to_update-tmp" -- /bin/bash -c "apt-get upgrade -y"
lxc stop "$image_to_update-tmp"
# Remove old image
lxc image delete "$image_to_update"
# Add new image updated
lxc publish "$image_to_update-tmp" --alias "$image_to_update"
lxc delete "$image_to_update-tmp"
}
start_container () {
set -x
@ -100,6 +118,8 @@ start_container () {
rebuild_base_container
fi
update_image "yunohost-$DEBIAN_VERSION-$SNAPSHOT_NAME"
lxc launch "yunohost-$DEBIAN_VERSION-$SNAPSHOT_NAME" "$CONTAINER_ID" 2>/dev/null
mkdir -p ${currentDir}/cache