mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 16:57:17 +08:00
14 lines
179 B
Bash
Executable File
14 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
|