CI: Improve deployment scripts #2076

This commit is contained in:
Michael Mayer 2022-03-11 10:52:59 +01:00
parent f5aee956af
commit 6bb8582cb5
2 changed files with 14 additions and 4 deletions

View file

@ -1,13 +1,19 @@
#!/usr/bin/env bash
# exit on error
set -e
# Run tests
# install QEMU for multi-arch builds
scripts/install-qemu.sh
# run tests
scripts/test.sh
# Build images
# build preview image
make docker-preview
# wait 2s
sleep 2
# build demo image
make docker-demo

View file

@ -1,9 +1,13 @@
#!/usr/bin/env bash
# exit on error
set -e
# Run tests
# install QEMU for multi-arch builds
scripts/install-qemu.sh
# run tests
scripts/test.sh
# Build images
# build release images
make docker-release