1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
5 # Use bash, and run all lines in each recipe as one shell command
9 APP_NAME?=arvados-workbench2
11 # VERSION uses all the above to produce X.Y.Z.timestamp
12 # something in the lines of 1.2.0.20180612145021, this will be the package version
13 # it can be overwritten when invoking make as in make packages VERSION=1.2.0
14 VERSION?=$(shell ./version-at-commit.sh HEAD)
15 # We don't use BUILD_NUMBER at the moment, but it needs to be defined
17 GIT_COMMIT?=$(shell git rev-parse --short HEAD)
19 # ITERATION is the package iteration, intended for manual change if anything non-code related
20 # changes in the package. (i.e. example config files externally added
23 TARGETS?=centos7 debian10 debian11 ubuntu1804 ubuntu2004
25 ARVADOS_DIRECTORY?=unset
27 DESCRIPTION=Arvados Workbench2 - Arvados is a free and open source platform for big data science.
28 MAINTAINER=Arvados Package Maintainers <packaging@arvados.org>
30 # DEST_DIR will have the build package copied.
31 DEST_DIR=/var/www/$(APP_NAME)/workbench2/
34 DEB_FILE=$(APP_NAME)_$(VERSION)-$(ITERATION)_amd64.deb
37 RPM_FILE=$(APP_NAME)-$(VERSION)-$(ITERATION).x86_64.rpm
39 export WORKSPACE?=$(shell pwd)
41 .PHONY: help clean* yarn-install test build packages packages-with-version integration-tests-in-docker
45 @echo >&2 "There is no default make target here. Did you mean 'make test'?"
47 @echo >&2 "More info:"
48 @echo >&2 " Installing --> http://doc.arvados.org/install"
49 @echo >&2 " Developing/contributing --> https://dev.arvados.org"
50 @echo >&2 " Project home --> https://arvados.org"
55 rm -f $(WORKSPACE)/*.deb
58 rm -f $(WORKSPACE)/*.rpm
61 rm -rf $(WORKSPACE)/node_modules
63 clean: clean-rpm clean-deb clean-node-modules
65 arvados-server-install:
66 cd $(ARVADOS_DIRECTORY)
71 ~/go/bin/arvados-server install -type test
73 yarn-install: arvados-server-install
76 unit-tests: yarn-install
77 yarn test --no-watchAll --bail --ci
79 integration-tests: yarn-install
80 yarn run cypress install
81 $(WORKSPACE)/tools/run-integration-tests.sh -a $(ARVADOS_DIRECTORY)
83 integration-tests-in-docker: workbench2-build-image
84 docker run -ti -v$(PWD):$(PWD) -w$(PWD) workbench2-build make integration-tests
86 test: unit-tests integration-tests
89 VERSION=$(VERSION) BUILD_NUMBER=$(BUILD_NUMBER) GIT_COMMIT=$(GIT_COMMIT) yarn build
97 --iteration "$(ITERATION)" \
98 --vendor="The Arvados Authors" \
99 --maintainer="$(MAINTAINER)" \
100 --url="https://arvados.org" \
101 --license="GNU Affero General Public License, version 3.0" \
102 --description="$(DESCRIPTION)" \
103 --config-files="etc/arvados/$(APP_NAME)/workbench2.example.json" \
104 $(WORKSPACE)/build/=$(DEST_DIR) \
105 etc/arvados/workbench2/workbench2.example.json=/etc/arvados/$(APP_NAME)/workbench2.example.json
113 --iteration "$(ITERATION)" \
114 --vendor="The Arvados Authors" \
115 --maintainer="$(MAINTAINER)" \
116 --url="https://arvados.org" \
117 --license="GNU Affero General Public License, version 3.0" \
118 --description="$(DESCRIPTION)" \
119 --config-files="etc/arvados/$(APP_NAME)/workbench2.example.json" \
120 $(WORKSPACE)/build/=$(DEST_DIR) \
121 etc/arvados/workbench2/workbench2.example.json=/etc/arvados/$(APP_NAME)/workbench2.example.json
123 copy: $(DEB_FILE) $(RPM_FILE)
124 for target in $(TARGETS) ; do \
125 mkdir -p packages/$$target
126 if [[ $$target =~ ^centos ]]; then
127 cp -p $(RPM_FILE) packages/$$target ; \
129 cp -p $(DEB_FILE) packages/$$target ; \
135 # use FPM to create DEB and RPM
138 check-arvados-directory:
139 @if test "${ARVADOS_DIRECTORY}" == "unset"; then echo "the environment variable ARVADOS_DIRECTORY must be set to the path of an arvados git checkout"; exit 1; fi
140 @if ! test -d "${ARVADOS_DIRECTORY}"; then echo "the environment variable ARVADOS_DIRECTORY does not point at a directory"; exit 1; fi
142 packages-in-docker: check-arvados-directory workbench2-build-image
143 docker run --env ci="true" \
144 --env ARVADOS_DIRECTORY=/tmp/arvados \
145 --env APP_NAME=${APP_NAME} \
146 --env ITERATION=${ITERATION} \
147 --env TARGETS="${TARGETS}" \
148 -w="/tmp/workbench2" \
149 -t -v ${WORKSPACE}:/tmp/workbench2 \
150 -v ${ARVADOS_DIRECTORY}:/tmp/arvados workbench2-build:latest \
153 workbench2-build-image:
154 (cd docker && docker build -t workbench2-build .)