18587: Temporarily disabling the 'copy selected into collection' feature.
[arvados-workbench2.git] / Makefile
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 # Use bash, and run all lines in each recipe as one shell command
6 SHELL := /bin/bash
7 .ONESHELL:
8
9 APP_NAME?=arvados-workbench2
10
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
16 # ITERATION is the package iteration, intended for manual change if anything non-code related
17 # changes in the package. (i.e. example config files externally added
18 ITERATION?=1
19
20 TARGETS?=centos7 debian10 debian11 ubuntu1804 ubuntu2004
21
22 ARVADOS_DIRECTORY?=unset
23
24 DESCRIPTION=Arvados Workbench2 - Arvados is a free and open source platform for big data science.
25 MAINTAINER=Arvados Package Maintainers <packaging@arvados.org>
26
27 # DEST_DIR will have the build package copied.
28 DEST_DIR=/var/www/$(APP_NAME)/workbench2/
29
30 # Debian package file
31 DEB_FILE=$(APP_NAME)_$(VERSION)-$(ITERATION)_amd64.deb
32
33 # redHat package file
34 RPM_FILE=$(APP_NAME)-$(VERSION)-$(ITERATION).x86_64.rpm
35
36 export WORKSPACE?=$(shell pwd)
37
38 .PHONY: help clean* yarn-install test build packages packages-with-version integration-tests-in-docker
39
40 help:
41         @echo >&2
42         @echo >&2 "There is no default make target here.  Did you mean 'make test'?"
43         @echo >&2
44         @echo >&2 "More info:"
45         @echo >&2 "  Installing              --> http://doc.arvados.org/install"
46         @echo >&2 "  Developing/contributing --> https://dev.arvados.org"
47         @echo >&2 "  Project home            --> https://arvados.org"
48         @echo >&2
49         @false
50
51 clean-deb:
52         rm -f $(WORKSPACE)/*.deb
53
54 clean-rpm:
55         rm -f $(WORKSPACE)/*.rpm
56
57 clean-node-modules:
58         rm -rf $(WORKSPACE)/node_modules
59
60 clean: clean-rpm clean-deb clean-node-modules
61
62 arvados-server-install:
63         cd $(ARVADOS_DIRECTORY)
64         go mod download
65         cd cmd/arvados-server
66         go install
67         cd -
68         ~/go/bin/arvados-server install -type test
69
70 yarn-install: arvados-server-install
71         yarn install
72
73 unit-tests: yarn-install
74         yarn test --no-watchAll --bail --ci
75
76 integration-tests: yarn-install
77         yarn run cypress install
78         $(WORKSPACE)/tools/run-integration-tests.sh -a $(ARVADOS_DIRECTORY)
79
80 integration-tests-in-docker: workbench2-build-image
81         docker run -ti -v$(PWD):$(PWD) -w$(PWD) workbench2-build make integration-tests
82
83 test: unit-tests integration-tests
84
85 build: yarn-install
86         VERSION=$(VERSION) yarn build
87
88 $(DEB_FILE): build
89         fpm \
90          -s dir \
91          -t deb \
92          -n "$(APP_NAME)" \
93          -v "$(VERSION)" \
94          --iteration "$(ITERATION)" \
95          --vendor="The Arvados Authors" \
96          --maintainer="$(MAINTAINER)" \
97          --url="https://arvados.org" \
98          --license="GNU Affero General Public License, version 3.0" \
99          --description="$(DESCRIPTION)" \
100          --config-files="etc/arvados/$(APP_NAME)/workbench2.example.json" \
101         $(WORKSPACE)/build/=$(DEST_DIR) \
102         etc/arvados/workbench2/workbench2.example.json=/etc/arvados/$(APP_NAME)/workbench2.example.json
103
104 $(RPM_FILE): build
105         fpm \
106          -s dir \
107          -t rpm \
108          -n "$(APP_NAME)" \
109          -v "$(VERSION)" \
110          --iteration "$(ITERATION)" \
111          --vendor="The Arvados Authors" \
112          --maintainer="$(MAINTAINER)" \
113          --url="https://arvados.org" \
114          --license="GNU Affero General Public License, version 3.0" \
115          --description="$(DESCRIPTION)" \
116          --config-files="etc/arvados/$(APP_NAME)/workbench2.example.json" \
117          $(WORKSPACE)/build/=$(DEST_DIR) \
118         etc/arvados/workbench2/workbench2.example.json=/etc/arvados/$(APP_NAME)/workbench2.example.json
119
120 copy: $(DEB_FILE) $(RPM_FILE)
121         for target in $(TARGETS) ; do \
122                 mkdir -p packages/$$target
123                 if [[ $$target =~ ^centos ]]; then
124                         cp -p $(RPM_FILE) packages/$$target ; \
125                 else
126                         cp -p $(DEB_FILE) packages/$$target ; \
127                 fi
128         done
129         rm -f $(RPM_FILE)
130         rm -f $(DEB_FILE)
131
132 # use FPM to create DEB and RPM
133 packages: copy
134
135 packages-in-docker: workbench2-build-image
136         docker run --env ci="true" \
137                 --env ARVADOS_DIRECTORY=/tmp/arvados \
138                 --env APP_NAME=${APP_NAME} \
139                 --env ITERATION=${ITERATION} \
140                 --env TARGETS="${TARGETS}" \
141                 -w="/tmp/workbench2" \
142                 -t -v ${WORKSPACE}:/tmp/workbench2 \
143                 -v ${ARVADOS_DIRECTORY}:/tmp/arvados workbench2-build:latest \
144                 make packages
145
146 workbench2-build-image:
147         (cd docker && docker build -t workbench2-build .)