From daf412c09de9fd29f248cd823dbe47dcda20f08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Valais?= Date: Mon, 14 Mar 2022 16:47:43 +0100 Subject: [PATCH] make: test-ci: xargs --max-procs doesn't exist in the busybox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maƫl Valais --- make/test.mk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/make/test.mk b/make/test.mk index 8840cda90..89c0dcec9 100644 --- a/make/test.mk +++ b/make/test.mk @@ -18,8 +18,9 @@ test: setup-integration-tests bin/tools/gotestsum bin/tools/etcd bin/tools/kubec .PHONY: test-ci # test-ci runs all unit and integration tests and writes a JUnit report of the # results. -test-ci: setup-integration-tests bin/tools/gotestsum bin/tools/etcd bin/tools/kubectl bin/tools/kube-apiserver | bin/testlogs - $(GOTESTSUM) --junitfile bin/testlogs/test-ci.xml -- ./... +test-ci: setup-integration-tests bin/tools/gotestsum bin/tools/etcd bin/tools/kubectl bin/tools/kube-apiserver + @mkdir -p $(ARTIFACTS) + $(GOTESTSUM) --junitfile $(ARTIFACTS)/test-ci.xml -- ./... .PHONY: unit-test ## Same as `test` but only runs the unit tests. By "unit tests", we mean tests @@ -74,7 +75,7 @@ test/integration/versionchecker/testdata/test_manifests.tar: bin/scratch/oldcrds bin/scratch/oldcrds.tar: bin/scratch/git/upstream-tags.txt | bin/scratch/oldcrds @# First, download the CRDs for all releases listed in upstream-tags.txt -