From 7b9b34fce607cd1785c2029f9b8dc316153f3d10 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Tue, 24 Oct 2023 10:57:46 -0300 Subject: [PATCH] 21118: Attempts to avoid the 'error obtaining VCS status' issue. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- Makefile | 2 +- tools/run-integration-tests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a5da3246..6a174bcf 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ arvados-server-install: check-arvados-directory go mod download cd cmd/arvados-server echo GOPATH is $(GOPATH) - go install + GOFLAGS=-buildvcs=false go install cd - ls -l $(GOPATH)/bin/arvados-server $(GOPATH)/bin/arvados-server install -type test diff --git a/tools/run-integration-tests.sh b/tools/run-integration-tests.sh index 1f2b7c5e..132b0e53 100755 --- a/tools/run-integration-tests.sh +++ b/tools/run-integration-tests.sh @@ -96,9 +96,9 @@ fi echo "Building & installing arvados-server..." cd ${ARVADOS_DIR} -go mod download || exit 1 +GOFLAGS=-buildvcs=false go mod download || exit 1 cd cmd/arvados-server -go install +GOFLAGS=-buildvcs=false go install cd - echo "Installing dev dependencies..." -- 2.30.2