forked from prometheus-operator/kube-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·35 lines (31 loc) · 808 Bytes
/
test.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
#!/usr/bin/env bash
set -e
# only exit with zero if all commands of the pipeline exit successfully
set -o pipefail
# Make sure to use project tooling
PATH="$(pwd)/tmp/bin:${PATH}"
for i in examples/jsonnet-snippets/*.jsonnet; do
[ -f "$i" ] || break
echo "Testing: ${i}"
echo ""
fileContent=$(<"$i")
snippet="local kp = $fileContent;
$(<examples/jsonnet-build-snippet/build-snippet.jsonnet)"
echo "${snippet}" > "test.jsonnet"
echo "\`\`\`"
echo "${snippet}"
echo "\`\`\`"
echo ""
jsonnet -J vendor "test.jsonnet" > /dev/null
rm -rf "test.jsonnet"
done
for i in examples/*.jsonnet; do
[ -f "$i" ] || break
echo "Testing: ${i}"
echo ""
echo "\`\`\`"
cat "${i}"
echo "\`\`\`"
echo ""
jsonnet -J vendor "${i}" > /dev/null
done