mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
45 lines
1.6 KiB
Makefile
45 lines
1.6 KiB
Makefile
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/sharelatex/sharelatex-dev-environment
|
|
# Version: 1.1.4
|
|
|
|
BUILD_NUMBER ?= local
|
|
BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
|
|
PROJECT_NAME = track-changes
|
|
DOCKER_COMPOSE_FLAGS ?= -f docker-compose.yml
|
|
DOCKER_COMPOSE := BUILD_NUMBER=$(BUILD_NUMBER) \
|
|
BRANCH_NAME=$(BRANCH_NAME) \
|
|
PROJECT_NAME=$(PROJECT_NAME) \
|
|
MOCHA_GREP=${MOCHA_GREP} \
|
|
AWS_BUCKET=${AWS_BUCKET} \
|
|
AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} \
|
|
AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} \
|
|
docker-compose ${DOCKER_COMPOSE_FLAGS}
|
|
|
|
|
|
clean:
|
|
rm -f app.js
|
|
rm -rf app/js
|
|
rm -rf test/unit/js
|
|
rm -rf test/acceptance/js
|
|
|
|
test: test_unit test_acceptance
|
|
|
|
test_unit:
|
|
@[ ! -d test/unit ] && echo "track-changes has no unit tests" || $(DOCKER_COMPOSE) run --rm test_unit
|
|
|
|
test_acceptance: test_clean test_acceptance_pre_run # clear the database before each acceptance test run
|
|
@[ ! -d test/acceptance ] && echo "track-changes has no acceptance tests" || $(DOCKER_COMPOSE) run --rm test_acceptance
|
|
|
|
test_clean:
|
|
$(DOCKER_COMPOSE) down -v -t 0
|
|
|
|
test_acceptance_pre_run:
|
|
@[ ! -f test/acceptance/scripts/pre-run ] && echo "track-changes 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
|