forked from alphagov/notifications-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
86 lines (71 loc) · 2.61 KB
/
Copy pathMakefile
File metadata and controls
86 lines (71 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.DEFAULT_GOAL := help
SHELL := /bin/bash
DOCKER_BUILDER_IMAGE_NAME = govuk/notify-java-client-builder
BUILD_TAG ?= notifications-java-client-manual
DOCKER_CONTAINER_PREFIX = ${USER}-${BUILD_TAG}
.PHONY: help
help:
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: dependencies
dependencies: ## Install build dependencies
mvn --batch-mode clean initialize
.PHONY: build
build: dependencies ## Build project
.PHONY: test
test: ## Run tests
mvn --batch-mode clean test
.PHONY: integration-test
integration-test: ## Run integration tests
mvn --batch-mode clean verify
.PHONY: generate-env-file
generate-env-file: ## Generate the environment file for running the tests inside a Docker container
script/generate_docker_env.sh
.PHONY: prepare-docker-runner-image
prepare-docker-runner-image: ## Prepare the Docker builder image
make -C docker build
.PHONY: build-with-docker
build-with-docker: prepare-docker-runner-image ## Build inside a Docker container
docker run -i --rm \
--name "${DOCKER_CONTAINER_PREFIX}-build" \
-v "`pwd`:/var/project" \
-v `pwd`/.m2:/root/.m2 \
-e http_proxy="${HTTP_PROXY}" \
-e HTTP_PROXY="${HTTP_PROXY}" \
-e https_proxy="${HTTPS_PROXY}" \
-e HTTPS_PROXY="${HTTPS_PROXY}" \
-e NO_PROXY="${NO_PROXY}" \
${DOCKER_BUILDER_IMAGE_NAME} \
make build
.PHONY: test-with-docker
test-with-docker: prepare-docker-runner-image generate-env-file ## Run tests inside a Docker container
docker run -i --rm \
--name "${DOCKER_CONTAINER_PREFIX}-test" \
-v "`pwd`:/var/project" \
-v `pwd`/.m2:/root/.m2 \
-e http_proxy="${HTTP_PROXY}" \
-e HTTP_PROXY="${HTTP_PROXY}" \
-e https_proxy="${HTTPS_PROXY}" \
-e HTTPS_PROXY="${HTTPS_PROXY}" \
-e NO_PROXY="${NO_PROXY}" \
--env-file docker.env \
${DOCKER_BUILDER_IMAGE_NAME} \
make test
.PHONY: integration-test-with-docker
integration-test-with-docker: prepare-docker-runner-image generate-env-file ## Run integration tests inside a Docker container
docker run -i --rm \
--name "${DOCKER_CONTAINER_PREFIX}-integration-test" \
-v "`pwd`:/var/project" \
-v `pwd`/.m2:/root/.m2 \
-e http_proxy="${HTTP_PROXY}" \
-e HTTP_PROXY="${HTTP_PROXY}" \
-e https_proxy="${HTTPS_PROXY}" \
-e HTTPS_PROXY="${HTTPS_PROXY}" \
-e NO_PROXY="${NO_PROXY}" \
--env-file docker.env \
${DOCKER_BUILDER_IMAGE_NAME} \
make integration-test
.PHONY: clean-docker-containers
clean-docker-containers: ## Clean up any remaining docker containers
docker rm -f $(shell docker ps -q -f "name=${DOCKER_CONTAINER_PREFIX}") 2> /dev/null || true
clean:
rm -rf .m2