0b46643def
Signed-off-by: Michael Mayer <michael@photoprism.app>
13 lines
184 B
Bash
Executable file
13 lines
184 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# exit on error
|
|
set -ex
|
|
|
|
# install QEMU for multi-arch builds
|
|
scripts/install-qemu.sh
|
|
|
|
# run tests
|
|
scripts/test.sh
|
|
|
|
# build release images
|
|
make docker-release-all
|