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.
2024-01-19 10:01:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -u
|
|
|
|
# DEBUG
|
|
|
|
set -x
|
|
|
|
|
|
|
|
main() {
|
2024-02-02 13:36:30 +00:00
|
|
|
cd "$(dirname "${0}")"
|
|
|
|
|
2024-01-24 13:48:08 +00:00
|
|
|
./pull-repos.sh
|
|
|
|
|
|
|
|
export action="${action:-deploy}"
|
|
|
|
export deployment="${deployment:-prod}"
|
2024-01-19 10:01:49 +00:00
|
|
|
./build__pilot-xo9b.sh
|
|
|
|
./build__pilot-setem.sh
|
|
|
|
./build__pilot-lafede.sh
|
2024-02-05 18:18:57 +00:00
|
|
|
|
|
|
|
./build__instance-autotest.sh
|
|
|
|
|
2024-01-25 14:57:20 +00:00
|
|
|
# pangea pilot the last because is the heavier
|
|
|
|
# TODO enable it, temp disabled to optimize server resources
|
|
|
|
#./build__pilot-pangea.sh
|
2024-01-19 10:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "${@}"
|