ci: Move run-docker-tests to free runner

Removed the Docker installation step as that's preinstalled in free
runners.

Signed-off-by: Aurélien Bombo <abombo@microsoft.com>
This commit is contained in:
Aurélien Bombo 2024-07-02 23:09:34 +00:00
parent 743a765525
commit c0919d6f45
2 changed files with 1 additions and 5 deletions

View File

@ -251,8 +251,6 @@ jobs:
run: bash tests/functional/vfio/gha-run.sh run
run-docker-tests:
# TODO: Transition to free runner (see #9940).
if: false
strategy:
# We can set this to true whenever we're 100% sure that
# all the tests are not flaky, otherwise we'll fail them
@ -262,7 +260,7 @@ jobs:
vmm:
- clh
- qemu
runs-on: garm-ubuntu-2304-smaller
runs-on: ubuntu-22.04
env:
KATA_HYPERVISOR: ${{ matrix.vmm }}
steps:

View File

@ -17,8 +17,6 @@ image="${image:-instrumentisto/nmap:latest}"
function install_dependencies() {
info "Installing the dependencies needed for running the docker smoke test"
install_docker
sudo -E docker pull "${image}"
}