-
Notifications
You must be signed in to change notification settings - Fork 385
/
Copy pathbrats.sh
executable file
·40 lines (31 loc) · 985 Bytes
/
brats.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
ROOTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
readonly ROOTDIR
# shellcheck source=SCRIPTDIR/.util/tools.sh
source "${ROOTDIR}/scripts/.util/tools.sh"
function main() {
local src
src="$(find "${ROOTDIR}/src" -mindepth 1 -maxdepth 1 -type d )"
if [[ ! -d "${src}/brats" ]]; then
echo "There are no brats tests to run"
exit 0
fi
util::tools::ginkgo::install --directory "${ROOTDIR}/.bin"
util::tools::buildpack-packager::install --directory "${ROOTDIR}/.bin"
util::tools::jq::install --directory "${ROOTDIR}/.bin"
util::tools::cf::install --directory "${ROOTDIR}/.bin"
local stack
stack="$(jq -r -S .stack "${ROOTDIR}/config.json")"
echo "Run Buildpack Runtime Acceptance Tests"
CF_STACK="${CF_STACK:-"${stack}"}" \
ginkgo \
-r \
-mod vendor \
--flakeAttempts "${GINKGO_ATTEMPTS:-2}" \
-nodes "${GINKGO_NODES:-3}" \
"${src}/brats"
}
main "${@:-}"