This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
idhub-docker/build__all.sh

30 lines
627 B
Bash
Executable File

#!/bin/sh
set -e
set -u
# DEBUG
set -x
main() {
cd "$(dirname "${0}")"
./pull-repos.sh
export action="${action:-deploy}"
export deployment="${deployment:-prod}"
export wait_seconds="${wait_seconds:-20}"
./build__pilot-xo9b.sh
./build__pilot-setem.sh
./build__pilot-lafede.sh
./build__instance-autotest.sh
./build__pilot-generic.sh
./build__instance-nightly.sh
# pangea pilot the last because is the heavier
# TODO enable it, temp disabled to optimize server resources
#./build__pilot-pangea.sh
}
main "${@}"