Merge branch 'master' into 13797-refactoring
[arvados-workbench2.git] / Makefile
index 5ad686bf17ad0285f1275ee1c28a7f35149fef32..c28b4b86c360b0e4200af5f5eb6ef0513983da7b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,10 @@
 #
 # SPDX-License-Identifier: Apache-2.0
 
+# Use bash, and run all lines in each recipe as one shell command
+SHELL := /bin/bash
+.ONESHELL:
+
 APP_NAME?=arvados-workbench2
 
 # GIT_TAG is the last tagged stable release (i.e. 1.2.0)
@@ -30,6 +34,12 @@ MAINTAINER=Ward Vandewege <wvandewege@veritasgenetics.com>
 # DEST_DIR will have the build package copied.
 DEST_DIR=/var/www/arvados-workbench2/workbench2/
 
+# Debian package file
+DEB_FILE=$(APP_NAME)_$(VERSION)-$(ITERATION)_amd64.deb
+
+# redHat package file
+RPM_FILE=$(APP_NAME)-$(VERSION)-$(ITERATION).x86_64.rpm
+
 export WORKSPACE?=$(shell pwd)
 
 .PHONY: help clean* yarn-install test build packages packages-with-version 
@@ -62,11 +72,10 @@ yarn-install:
 test: yarn-install
        yarn test       --no-watchAll --bail --ci
 
-build: yarn-install test
+build: test
        yarn build
 
-# use FPM to create DEB and RPM
-packages: build
+$(DEB_FILE): build
        fpm \
         -s dir \
         -t deb \
@@ -75,8 +84,10 @@ packages: build
         --iteration "$(ITERATION)" \
         --maintainer="$(MAINTAINER)" \
         --description="$(DESCRIPTION)" \
-        --deb-no-default-config-files \
-       $(WORKSPACE)/build/=DEST_DIR
+        --config-files="etc/arvados/workbench2/workbench2.example.json" \
+       $(WORKSPACE)/build/=$(DEST_DIR)
+
+$(RPM_FILE): build
        fpm \
         -s dir \
         -t rpm \
@@ -85,4 +96,19 @@ packages: build
         --iteration "$(ITERATION)" \
         --maintainer="$(MAINTAINER)" \
         --description="$(DESCRIPTION)" \
-        $(WORKSPACE)/build/=DEST_DIR
+        --config-files="etc/arvados/workbench2/workbench2.example.json" \
+        $(WORKSPACE)/build/=$(DEST_DIR)
+
+copy: $(DEB_FILE) $(RPM_FILE)
+       for target in $(TARGETS); do \
+               if [[ $$target =~ ^centos ]]; then
+                       cp -p $(RPM_FILE) packages/$$target ; \
+               else
+                       cp -p $(DEB_FILE) packages/$$target ; \
+               fi
+       done
+       rm -f $(RPM_FILE)
+       rm -f $(DEB_FILE)
+
+# use FPM to create DEB and RPM
+packages: copy