Removes Ansible reinstall from pipeline (#10032)

This commit is contained in:
Luke Simmons
2023-08-14 14:11:21 +02:00
committed by GitHub
parent 3b68d63643
commit 1955943d4a
8 changed files with 1 additions and 25 deletions

View File

@@ -1,9 +1,6 @@
#!/bin/bash
set -euxo pipefail
/usr/bin/python -m pip uninstall -y ansible ansible-base ansible-core
/usr/bin/python -m pip install -r tests/requirements.txt
ansible-galaxy install -r tests/requirements.yml
mkdir -p /.ssh
mkdir -p cluster-dump
mkdir -p $HOME/.ssh

View File

@@ -3,8 +3,6 @@ set -euxo pipefail
# Cleanup vagrant VMs to avoid name conflicts
apt-get install -y libvirt-clients
for i in $(virsh list --name)
do
virsh destroy "$i"