overleaf/services/web/Makefile

85 lines
2.4 KiB
Makefile
Raw Normal View History

2017-11-29 08:49:36 -05:00
DOCKER_COMPOSE_FLAGS ?= -f docker-compose.yml
2017-12-01 03:49:10 -05:00
NPM := docker-compose ${DOCKER_COMPOSE_FLAGS} run --rm npm npm -q
BUILD_NUMBER ?= local
BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
PROJECT_NAME = web
all: install test
@echo "Run:"
@echo " make install to set up the project dependencies (in docker)"
@echo " make test to run all the tests for the project (in docker)"
add: docker-shared.yml
$(NPM) install --save ${P}
add_dev: docker-shared.yml
$(NPM) install --save-dev ${P}
install: docker-shared.yml
2017-12-14 04:32:38 -05:00
bin/generate_volumes_file
$(NPM) install
2017-12-14 04:32:38 -05:00
clean: ci_clean
rm -f app.js
rm -rf app/js
rm -rf test/unit/js
rm -rf test/acceptance/js
2017-11-27 11:55:11 -05:00
for dir in modules/*; \
do \
rm -f $$dir/index.js; \
rm -rf $$dir/app/js; \
rm -rf $$dir/test/unit/js; \
rm -rf $$dir/test/acceptance/js; \
done
2017-12-14 04:32:38 -05:00
ci_clean:
# Deletes node_modules volume
docker-compose down --volumes
# Need regenerating if you change the web modules you have installed
docker-shared.yml:
bin/generate_volumes_file
2017-12-14 04:32:38 -05:00
test: test_unit test_frontend test_acceptance
test_unit: docker-shared.yml
docker-compose ${DOCKER_COMPOSE_FLAGS} run --rm test_unit npm -q run test:unit -- ${MOCHA_ARGS}
2017-12-14 04:32:38 -05:00
test_frontend: docker-shared.yml
docker-compose ${DOCKER_COMPOSE_FLAGS} run --rm test_unit npm -q run test:frontend -- ${MOCHA_ARGS}
test_acceptance: test_acceptance_app test_acceptance_modules
test_acceptance_app: test_acceptance_app_start_service test_acceptance_app_run test_acceptance_app_stop_service
2017-11-29 08:49:36 -05:00
test_acceptance_app_start_service: test_acceptance_app_stop_service docker-shared.yml
docker-compose ${DOCKER_COMPOSE_FLAGS} up -d test_acceptance
test_acceptance_app_stop_service: docker-shared.yml
2017-11-29 08:49:36 -05:00
docker-compose ${DOCKER_COMPOSE_FLAGS} stop test_acceptance redis mongo
test_acceptance_app_run: docker-shared.yml
docker-compose ${DOCKER_COMPOSE_FLAGS} exec -T test_acceptance npm -q run test:acceptance -- ${MOCHA_ARGS}
test_acceptance_modules: docker-shared.yml
# Break and error on any module failure
set -e; \
for dir in modules/*; \
do \
2017-12-01 04:01:36 -05:00
if [ -e $$dir/Makefile ]; then \
(make test_acceptance_module MODULE=$$dir) \
fi \
done
test_acceptance_module: docker-shared.yml
cd $(MODULE) && make test_acceptance
2017-12-14 04:43:59 -05:00
ci:
MOCHA_ARGS="--reporter tap" \
$(MAKE) install test
2017-12-14 04:32:38 -05:00
.PHONY:
2017-12-14 04:32:38 -05:00
all add install update test test_unit test_unit_frontend test_acceptance \
test_acceptance_start_service test_acceptance_stop_service \
2017-12-14 04:32:38 -05:00
test_acceptance_run ci ci_clean