summaryrefslogtreecommitdiff
path: root/test/utils/shippable
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2020-05-26 14:05:46 -0700
committerGitHub <noreply@github.com>2020-05-26 14:05:46 -0700
commit5fc01c0a1d330fe0dc6cae378361093230445ef4 (patch)
tree84be15451eef90dd683238835091fe1e7bf3d6fa /test/utils/shippable
parentc987c0c8a1c18be7a35157e9c75dcd2cdbdad003 (diff)
downloadansible-5fc01c0a1d330fe0dc6cae378361093230445ef4.tar.gz
Use a custom build container on Shippable. (#69660)
* Use a custom build container on Shippable. This supports key generation before git_sync, to avoid issues with pre-migration PRs. If the node pool is switched to another version, a matching build container should be built and used. * Don't kill our own custom container.
Diffstat (limited to 'test/utils/shippable')
-rwxr-xr-xtest/utils/shippable/shippable.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/shippable/shippable.sh b/test/utils/shippable/shippable.sh
index 4141eee87f..55d6828971 100755
--- a/test/utils/shippable/shippable.sh
+++ b/test/utils/shippable/shippable.sh
@@ -13,7 +13,7 @@ docker images ansible/ansible
docker images quay.io/ansible/*
docker ps
-for container in $(docker ps --format '{{.Image}} {{.ID}}' | grep -v '^drydock/' | sed 's/^.* //'); do
+for container in $(docker ps --format '{{.Image}} {{.ID}}' | grep -v -e '^drydock/' -e '^quay.io/ansible/shippable-build-container:' | sed 's/^.* //'); do
docker rm -f "${container}" || true # ignore errors
done