From 62a895544fa700f6916f7f17722610727f7b02f1 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 30 Aug 2022 10:36:51 +0300 Subject: [PATCH] Makefile: use statically linked binaries in e2e-tests Otherwise tests might fail because of library version incompatibilities wrt build host vs the container image that we're running the binaries. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fb89206c5..5d2de5a3e 100644 --- a/Makefile +++ b/Makefile @@ -442,7 +442,7 @@ endif release-tests: e2e-tests -e2e-tests: build +e2e-tests: build-static $(Q)tests="$(if $(E2E_TESTS),$(E2E_TESTS),test/e2e/policies.test-suite)"; \ $(E2E_RUN) $$tests; \ if [ "$$?" != "0" ]; then \