From f8c750277f7564924738cb2e551d05fcefc19fc0 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Tue, 15 Dec 2020 16:07:36 +0100 Subject: [PATCH] =?UTF-8?q?Do=20not=20run=20compose=20local=20e2e=20tests?= =?UTF-8?q?=20on=20windows=20GHA=20nodes=20for=20now=20(buildkit=20failing?= =?UTF-8?q?=20with=20`failed=20to=20mount=20C:\ProgramData\docker\tmp\buil?= =?UTF-8?q?dkit-mount370086869:=20[{Type:bind=20Source:C:\ProgramData\dock?= =?UTF-8?q?er\windowsfilter\y3952h88q6ikevun9li41hjcb=20Options:[rbind=20r?= =?UTF-8?q?o]}]:=20invalid=20windows=20mount=20type:=20'bind=E2=80=99`).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Guillaume Tardif --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 61999054e..af3a2a912 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ e2e-local: ## Run End to end local tests. Set E2E_TEST=TestName to run a single go test -count=1 -v $(TEST_FLAGS) ./tests/e2e ./tests/compose-e2e ./tests/skip-win-ci-e2e ./local/e2e e2e-win-ci: ## Run end to end local tests on Windows CI, no Docker for Linux containers available ATM. Set E2E_TEST=TestName to run a single test - go test -count=1 -v $(TEST_FLAGS) ./tests/e2e ./tests/compose-e2e + go test -count=1 -v $(TEST_FLAGS) ./tests/e2e e2e-aci: ## Run End to end ACI tests. Set E2E_TEST=TestName to run a single test go test -count=1 -v $(TEST_FLAGS) ./tests/aci-e2e