diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 9bfe0652e4..ad497816f9 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -8,7 +8,7 @@ on: type: string runner: type: string - default: "ubuntu-latest-4-cores" + default: "equinix-4cpu-16gb" ginkgo-focus: type: string default: "" @@ -32,6 +32,8 @@ jobs: run: | sudo apt-get update sudo apt-get install -y libvirt-daemon-system qemu-kvm virt-manager libvirt-dev + sudo systemctl enable libvirtd + sudo systemctl start libvirtd - name: Run BMO e2e Tests env: @@ -40,9 +42,11 @@ jobs: # We need a new shell to pick up the new group. That is why we do the sudo -s -u $USER ... # Remove the pre-installed go version. We install the exact version we need. run: | - sudo usermod -a -G libvirt $USER - sudo rm /usr/bin/go - sudo -s -u $USER --preserve-env bash ${{ github.workspace }}/hack/ci-e2e.sh + echo $USER + env + cat /etc/os-release + sudo usermod -a -G libvirt $(whoami) + sudo -s -u $(whoami) --preserve-env bash ${{ github.workspace }}/hack/ci-e2e.sh - name: Upload artifacts if: ${{ !cancelled() }}