mirror of
https://github.com/openshift/source-to-image.git
synced 2026-02-05 12:44:54 +01:00
28 lines
566 B
Bash
Executable File
28 lines
566 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
readonly S2I_ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
|
|
s2i::cleanup() {
|
|
echo
|
|
echo "Complete"
|
|
}
|
|
|
|
readonly img_count="$(docker images | grep -c sti_test/sti-fake || :)"
|
|
|
|
if [ "${img_count}" != "12" ]; then
|
|
echo "Missing test images, run 'hack/build-test-images.sh' and try again."
|
|
exit 1
|
|
fi
|
|
|
|
trap s2i::cleanup EXIT SIGINT
|
|
|
|
echo
|
|
echo "Running docker integration tests ..."
|
|
echo
|
|
|
|
S2I_BUILD_TAGS="integration" S2I_TIMEOUT="-timeout 600s" "${S2I_ROOT}/hack/test-go.sh" test/integration/docker -v "${@:1}"
|