mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-20 16:55:35 +00:00
13 lines
179 B
Bash
Executable file
13 lines
179 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 release images
|
|
make docker-release
|