22 lines
293 B
Bash
Executable File
22 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
set -x
|
|
tilt ci -f custom.Tiltfile > tilt.log 2>&1
|
|
CI_EXIT=$?
|
|
|
|
tilt down
|
|
|
|
if [ $CI_EXIT -eq 0 ]; then
|
|
echo "Expected 'tilt ci' to fail, but succeeded."
|
|
exit 1
|
|
fi
|
|
|
|
grep -q "Are you there, pod?" tilt.log
|
|
GREP_EXIT=$?
|
|
|
|
rm tilt.log
|
|
|
|
exit $GREP_EXIT
|