27 lines
506 B
Bash
Executable File
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 "${@}"
|