Skip to content

Commit ce8157b

Browse files
committed
ci: Pass --container-runtime=docker on the Hyper-V functional extra job
The Windows Hyper-V TestFunctional run only set --driver=hyperv, so it used the product default. After the default became containerd that job would no longer test docker. Add --container-runtime=docker to --minikube-start-args.
1 parent 1d61e32 commit ce8157b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/functional_extra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
\$env:Path += ';C:\Users\minikubeadmin\go\bin';
121121
\$OutputEncoding = [System.Text.Encoding]::UTF8;
122122
123-
./e2e-windows-amd64.exe --minikube-start-args='--driver=hyperv' --binary=./minikube-windows-amd64.exe '-test.run' TestFunctional '-test.v' '-test.timeout=40m' | Tee-Object -FilePath testout.txt
123+
./e2e-windows-amd64.exe --minikube-start-args='--driver=hyperv --container-runtime=docker' --binary=./minikube-windows-amd64.exe '-test.run' TestFunctional '-test.v' '-test.timeout=40m' | Tee-Object -FilePath testout.txt
124124
\$env:result=\$lastexitcode
125125
126126
Get-Content testout.txt | go tool test2json -t | Out-File -Encoding UTF8 testout.json

0 commit comments

Comments
 (0)