Skip to content
Snippets Groups Projects
Makefile 3.08 KiB
Newer Older
Daniel Lyons's avatar
Daniel Lyons committed
SHELL := /bin/bash

.PHONY: check-build test-dev test dev setup alembic-update docker-base db build coverage clean
Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
all: dev check-build
Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
# Check if local code will pass CI build
check-build: docker-base docker-dev-images-locally test-dev
test-dev:
	docker run nrao:workflow ./bin/run-tests.sh
	docker run nrao:capability ./bin/run-tests.sh
	docker run nrao:notification ./bin/run-tests.sh
	docker exec workspaces_workflow_1 su vlapipe -c "./bin/run-tests.sh"
	docker exec workspaces_capability_1 ./bin/run-tests.sh
	docker exec workspaces_notification_1 ./bin/run-tests.sh
test_cp:
	docker exec workspaces_capability_1 ./bin/run-tests.sh

Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
# Setup local development environment
dev: cache docker-base
	@echo "starting docker compose up in the background"
	@echo "wait a few seconds and your environment should be done setting up"
	docker compose up -d
alembic-update:
	cd schema; \
	env CAPO_PROFILE=local alembic upgrade head
Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
# Build images from Dockerfile.dev
docker-dev-images-locally:
	docker build -t nrao:workflow -f services/workflow/Dockerfile.local . --build-arg capo_env=docker
	docker build -t nrao:capability -f services/capability/Dockerfile.local . --build-arg capo_env=docker
	docker build -t nrao:notification -f services/notification/Dockerfile.local . --build-arg capo_env=docker
Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
# Build base image
docker-base: db
	docker build --no-cache -t ssa-containers.aoc.nrao.edu/ops/base:workspaces -f Dockerfile.base .
	docker build --no-cache -t ssa-containers.aoc.nrao.edu/ops/base:nodejs-14 -f apps/web/Dockerfile.base .
Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
# Build cache image
cache:
	docker build --no-cache -t cache:tmp -f Dockerfile.cache .

# Build DB image
db:
	docker build --no-cache -t ssa-containers.aoc.nrao.edu/ops/ci/db:workspaces -f ./ci/psql/Dockerfile.db .
Andrew Kapuscinski's avatar
Andrew Kapuscinski committed
build: docker-base db cache
	docker compose build --no-cache
# Generate HTML coverage report
coverage:
	docker exec workspaces_workflow_1 ./bin/run-tests.sh -b
	cp services/workflow/.coverage ./.coverage.wf 
	docker exec workspaces_capability_1 ./bin/run-tests.sh -b
	cp services/capability/.coverage ./.coverage.cap
	docker exec workspaces_notification_1 ./bin/run-tests.sh -b
	cp services/notification/.coverage ./.coverage.no
	coverage combine --append
	coverage html --omit="**/test_*.py,**/_version.py,**/conftest.py,**/*interfaces.py" --skip-empty
# Clean up Docker environment
	docker-compose down || true
# remove nrao: labeled containers
	@docker container list --all | grep nrao: | awk '{ print $$1 }' | xargs docker container rm -f
# remove workspaces and nrao labeled images
	@docker images | grep 'workspaces\|nrao' | awk '{ print $$3 }' | xargs docker rmi -f
# remove the python egg-info and pytest_cache folders
	@find . \( -name "*.egg-info" -o -name ".pytest_cache" \) -exec rm -r {} \;

# Clean things up in a very nasty and destructive way that is sure to derail the rest of your afternoon
reallyclean: clean
	docker system prune --volumes -f
Daniel Lyons's avatar
Daniel Lyons committed

# Make the documentation
.PHONY: docs
docs:
	cd docs && make html