[arvados-workbench2] created: 2.7.0-168-g65ec74dc
git repository hosting
git at public.arvados.org
Fri Oct 20 15:05:40 UTC 2023
at 65ec74dcf08025b4d2d5586ebfe6eaaa953765f8 (commit)
commit 65ec74dcf08025b4d2d5586ebfe6eaaa953765f8
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date: Fri Oct 20 12:04:51 2023 -0300
21118: Calls arvados-server from GOPATH instead of assuming root home dir.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>
diff --git a/Makefile b/Makefile
index 2ca5e79a..29701c76 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,7 @@ DEB_FILE=$(APP_NAME)_$(VERSION)-$(ITERATION)_amd64.deb
# redHat package file
RPM_FILE=$(APP_NAME)-$(VERSION)-$(ITERATION).x86_64.rpm
+GOPATH=$(shell go env GOPATH)
export WORKSPACE?=$(shell pwd)
.PHONY: help clean* yarn-install test build packages packages-with-version integration-tests-in-docker
@@ -68,8 +69,8 @@ arvados-server-install: check-arvados-directory
cd cmd/arvados-server
go install
cd -
- ls -l ~/go/bin/arvados-server
- ~/go/bin/arvados-server install -type test
+ ls -l $(GOPATH)/bin/arvados-server
+ $(GOPATH)/bin/arvados-server install -type test
yarn-install: arvados-server-install
yarn install
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list