|
@@ -1,13 +1,18 @@
|
|
|
# This file was auto-generated, do not edit it directly.
|
|
# This file was auto-generated, do not edit it directly.
|
|
|
# Instead run bin/update_build_scripts from
|
|
# Instead run bin/update_build_scripts from
|
|
|
# https://github.com/sharelatex/sharelatex-dev-environment
|
|
# https://github.com/sharelatex/sharelatex-dev-environment
|
|
|
-# Version: 1.0.1
|
|
|
|
|
|
|
+# Version: 1.1.3
|
|
|
|
|
|
|
|
BUILD_NUMBER ?= local
|
|
BUILD_NUMBER ?= local
|
|
|
BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
|
|
BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
|
|
|
PROJECT_NAME = document-updater
|
|
PROJECT_NAME = document-updater
|
|
|
DOCKER_COMPOSE_FLAGS ?= -f docker-compose.yml
|
|
DOCKER_COMPOSE_FLAGS ?= -f docker-compose.yml
|
|
|
-DOCKER_COMPOSE := docker-compose ${DOCKER_COMPOSE_FLAGS}
|
|
|
|
|
|
|
+DOCKER_COMPOSE := BUILD_NUMBER=$(BUILD_NUMBER) \
|
|
|
|
|
+ BRANCH_NAME=$(BRANCH_NAME) \
|
|
|
|
|
+ PROJECT_NAME=$(PROJECT_NAME) \
|
|
|
|
|
+ MOCHA_GREP=${MOCHA_GREP} \
|
|
|
|
|
+ docker-compose ${DOCKER_COMPOSE_FLAGS}
|
|
|
|
|
+
|
|
|
|
|
|
|
|
clean:
|
|
clean:
|
|
|
rm -f app.js
|
|
rm -f app.js
|
|
@@ -18,12 +23,20 @@ clean:
|
|
|
test: test_unit test_acceptance
|
|
test: test_unit test_acceptance
|
|
|
|
|
|
|
|
test_unit:
|
|
test_unit:
|
|
|
- @[ -d test/unit ] && $(DOCKER_COMPOSE) run --rm test_unit -- ${MOCHA_ARGS} || echo "document-updater has no unit tests"
|
|
|
|
|
|
|
+ @[ ! -d test/unit ] && echo "document-updater has no unit tests" || $(DOCKER_COMPOSE) run --rm test_unit
|
|
|
|
|
|
|
|
-test_acceptance: test_clean # clear the database before each acceptance test run
|
|
|
|
|
- @[ -d test/acceptance ] && $(DOCKER_COMPOSE) run --rm test_acceptance -- ${MOCHA_ARGS} || echo "document-updater has no acceptance tests"
|
|
|
|
|
|
|
+test_acceptance: test_clean test_acceptance_pre_run # clear the database before each acceptance test run
|
|
|
|
|
+ @[ ! -d test/acceptance ] && echo "document-updater has no acceptance tests" || $(DOCKER_COMPOSE) run --rm test_acceptance
|
|
|
|
|
|
|
|
test_clean:
|
|
test_clean:
|
|
|
- $(DOCKER_COMPOSE) down -t 0
|
|
|
|
|
|
|
+ $(DOCKER_COMPOSE) down -v -t 0
|
|
|
|
|
+
|
|
|
|
|
+test_acceptance_pre_run:
|
|
|
|
|
+ @[ ! -f test/acceptance/scripts/pre-run ] && echo "document-updater has no pre acceptance tests task" || $(DOCKER_COMPOSE) run --rm test_acceptance test/acceptance/scripts/pre-run
|
|
|
|
|
+build:
|
|
|
|
|
+ docker build --pull --tag gcr.io/csh-gcdm-test/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) .
|
|
|
|
|
+
|
|
|
|
|
+publish:
|
|
|
|
|
+ docker push gcr.io/csh-gcdm-test/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER)
|
|
|
|
|
|
|
|
.PHONY: clean test test_unit test_acceptance test_clean build publish
|
|
.PHONY: clean test test_unit test_acceptance test_clean build publish
|