2021-12-03 16:49:43 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-03-11 10:52:59 +01:00
|
|
|
# exit on error
|
2021-12-03 16:49:43 +01:00
|
|
|
set -e
|
|
|
|
|
2022-03-11 10:52:59 +01:00
|
|
|
# install QEMU for multi-arch builds
|
|
|
|
scripts/install-qemu.sh
|
|
|
|
|
|
|
|
# run tests
|
2021-12-03 16:49:43 +01:00
|
|
|
scripts/test.sh
|
|
|
|
|
2022-03-11 10:52:59 +01:00
|
|
|
# build release images
|
2022-05-17 04:08:13 +02:00
|
|
|
make docker-release-all
|