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
pedro bfd6a92d6c rename from pilot test to autotest instance
differentiate between instance and pilot

build common arg is target (which can be pilot or instance)
2024-02-05 20:00:30 +01:00

27 lines
506 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}"
./build__pilot-xo9b.sh
./build__pilot-setem.sh
./build__pilot-lafede.sh
./build__instance-autotest.sh
# pangea pilot the last because is the heavier
# TODO enable it, temp disabled to optimize server resources
#./build__pilot-pangea.sh
}
main "${@}"