| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- # This file was auto-generated, do not edit it directly.
- # Instead run bin/update_build_scripts from
- # https://github.com/overleaf/internal/
- BUILD_NUMBER ?= local
- BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
- PROJECT_NAME = spelling
- BUILD_DIR_NAME = $(shell pwd | xargs basename | tr -cd '[a-zA-Z0-9_.\-]')
- 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} \
- docker-compose ${DOCKER_COMPOSE_FLAGS}
- DOCKER_COMPOSE_TEST_ACCEPTANCE = \
- COMPOSE_PROJECT_NAME=test_acceptance_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE)
- DOCKER_COMPOSE_TEST_UNIT = \
- COMPOSE_PROJECT_NAME=test_unit_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE)
- clean:
- -docker rmi ci/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER)
- -docker rmi gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER)
- -$(DOCKER_COMPOSE_TEST_UNIT) down --rmi local
- -$(DOCKER_COMPOSE_TEST_ACCEPTANCE) down --rmi local
- HERE=$(shell pwd)
- MONOREPO=$(shell cd ../../ && pwd)
- # Run the linting commands in the scope of the monorepo.
- # Eslint and prettier (plus some configs) are on the root.
- RUN_LINTING = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(HERE) node:16.17.1 npm run --silent
- format:
- $(RUN_LINTING) format
- format_fix:
- $(RUN_LINTING) format:fix
- lint:
- $(RUN_LINTING) lint
- lint_fix:
- $(RUN_LINTING) lint:fix
- test: format lint test_unit test_acceptance
- test_unit:
- ifneq (,$(wildcard test/unit))
- $(DOCKER_COMPOSE_TEST_UNIT) run --rm test_unit
- $(MAKE) test_unit_clean
- endif
- test_clean: test_unit_clean
- test_unit_clean:
- ifneq (,$(wildcard test/unit))
- $(DOCKER_COMPOSE_TEST_UNIT) down -v -t 0
- endif
- test_acceptance: test_acceptance_clean test_acceptance_pre_run test_acceptance_run
- $(MAKE) test_acceptance_clean
- test_acceptance_debug: test_acceptance_clean test_acceptance_pre_run test_acceptance_run_debug
- $(MAKE) test_acceptance_clean
- test_acceptance_run:
- ifneq (,$(wildcard test/acceptance))
- $(DOCKER_COMPOSE_TEST_ACCEPTANCE) run --rm test_acceptance
- endif
- test_acceptance_run_debug:
- ifneq (,$(wildcard test/acceptance))
- $(DOCKER_COMPOSE_TEST_ACCEPTANCE) run -p 127.0.0.9:19999:19999 --rm test_acceptance npm run test:acceptance -- --inspect=0.0.0.0:19999 --inspect-brk
- endif
- test_clean: test_acceptance_clean
- test_acceptance_clean:
- $(DOCKER_COMPOSE_TEST_ACCEPTANCE) down -v -t 0
- test_acceptance_pre_run:
- ifneq (,$(wildcard test/acceptance/js/scripts/pre-run))
- $(DOCKER_COMPOSE_TEST_ACCEPTANCE) run --rm test_acceptance test/acceptance/js/scripts/pre-run
- endif
- benchmarks:
- $(DOCKER_COMPOSE_TEST_ACCEPTANCE) run --rm test_acceptance npm run benchmarks
- build:
- docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \
- || docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):main-deps \
- || echo 'nothing cached'
- docker build \
- --pull \
- --tag gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \
- --cache-from gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \
- --cache-from gcr.io/overleaf-ops/$(PROJECT_NAME):main-deps \
- --target base \
- --file Dockerfile \
- ../..
- docker build --pull --tag ci/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) \
- --tag gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) \
- --cache-from gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \
- --file Dockerfile \
- ../..
- tar:
- $(DOCKER_COMPOSE) up tar
- publish:
- docker push $(DOCKER_REPO)/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER)
- .PHONY: clean test test_unit test_acceptance test_clean benchmarks build publish
|