19 lines
234 B
Bash
Executable file
19 lines
234 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# exit on error
|
|
set -e
|
|
|
|
# install QEMU for multi-arch builds
|
|
scripts/install-qemu.sh
|
|
|
|
# run tests
|
|
scripts/test.sh
|
|
|
|
# build preview image
|
|
make docker-preview
|
|
|
|
# wait 2s
|
|
sleep 2
|
|
|
|
# build demo image
|
|
make docker-demo
|