mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
84 lines
2.4 KiB
Makefile
84 lines
2.4 KiB
Makefile
DOCKER_COMPOSE_FLAGS ?= -f docker-compose.yml
|
|
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
|
|
bin/generate_volumes_file
|
|
$(NPM) install
|
|
|
|
clean: ci_clean
|
|
rm -f app.js
|
|
rm -rf app/js
|
|
rm -rf test/unit/js
|
|
rm -rf test/acceptance/js
|
|
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
|
|
|
|
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
|
|
|
|
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}
|
|
|
|
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
|
|
|
|
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
|
|
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 \
|
|
if [ -e $$dir/Makefile ]; then \
|
|
(make test_acceptance_module MODULE=$$dir) \
|
|
fi \
|
|
done
|
|
|
|
test_acceptance_module: docker-shared.yml
|
|
cd $(MODULE) && make test_acceptance
|
|
|
|
ci:
|
|
MOCHA_ARGS="--reporter tap" \
|
|
$(MAKE) install test
|
|
|
|
.PHONY:
|
|
all add install update test test_unit test_frontend test_acceptance \
|
|
test_acceptance_start_service test_acceptance_stop_service \
|
|
test_acceptance_run ci ci_clean
|