Terminate Tower instances after CI ends. (#37265)

* Remove obsolete Tower support from manage_ci.
* Add missing remote settings to cloud tests.
pull/37268/head
Matt Clay 6 years ago committed by GitHub
parent 8980d275a0
commit 11ad559010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -135,8 +135,6 @@ class ManagePosixCI(object):
self.become = ['sudo', '-in', 'PATH=/usr/local/bin:$PATH']
elif self.core_ci.platform == 'rhel':
self.become = ['sudo', '-in', 'bash', '-c']
elif self.core_ci.platform == 'tower':
self.become = ['sudo', '-in', 'bash', '-c']
def setup(self):
"""Start instance and wait for it to become ready and respond to an ansible ping."""

@ -9,6 +9,9 @@ image="${args[1]}"
python="${args[2]}"
target="posix/ci/cloud/group${args[3]}/"
stage="${S:-prod}"
# shellcheck disable=SC2086
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \
--remote-terminate always --remote-stage "${stage}" \
--docker "${image}" --python "${python}" --changed-all-target "${target}smoketest/"

Loading…
Cancel
Save