c7bf0ca0fb
- add git pull also ssikit_trustchain - allow customized branch pulling (idhub main on pilots vs release on test instances), by default main - now autotest and nightly instances are going to point to release
28 lines
403 B
Bash
Executable file
28 lines
403 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
# DEBUG
|
|
set -x
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")"
|
|
|
|
# includes functions:
|
|
# common_start
|
|
# common_end
|
|
. ./build__common.sh
|
|
|
|
# vars used in common_start and end
|
|
target='instance-nightly'
|
|
persistence='n'
|
|
idhubs='idhub'
|
|
idhub_branch='release'
|
|
|
|
common_start
|
|
|
|
common_end
|
|
}
|
|
|
|
main "${@}"
|