2014-04-16 22:40:15 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# Copyright (c) 2014 Mozilla Corporation
|
|
|
|
#
|
|
|
|
|
2018-10-16 00:37:10 +03:00
|
|
|
ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
2018-10-17 00:10:49 +03:00
|
|
|
DKR_IMAGES := mozdef_alertplugins mozdef_alerts mozdef_base mozdef_bootstrap mozdef_meteor mozdef_rest \
|
|
|
|
mozdef_mq_eventtask mozdef_loginput mozdef_cron mozdef_elasticsearch mozdef_mongodb \
|
2018-10-17 02:08:35 +03:00
|
|
|
mozdef_syslog mozdef_nginx mozdef_tester mozdef_rabbitmq
|
2018-10-16 01:39:22 +03:00
|
|
|
NAME := mozdef
|
|
|
|
VERSION := 0.1
|
|
|
|
NO_CACHE := #--no-cache
|
2018-10-17 00:10:49 +03:00
|
|
|
GITHASH := $(shell git rev-parse --short HEAD)
|
2014-04-01 08:06:49 +04:00
|
|
|
|
2018-10-16 01:39:22 +03:00
|
|
|
.PHONY:all
|
2018-10-16 00:37:10 +03:00
|
|
|
all:
|
|
|
|
@echo 'Available make targets:'
|
2018-10-16 01:39:22 +03:00
|
|
|
@grep '^[^#[:space:]^\.PHONY.*].*:' Makefile
|
2018-10-16 00:37:10 +03:00
|
|
|
|
2018-10-16 01:39:22 +03:00
|
|
|
.PHONY: build
|
2018-10-16 00:37:10 +03:00
|
|
|
run: build
|
2017-07-15 03:00:52 +03:00
|
|
|
docker-compose -f docker/compose/docker-compose.yml -p $(NAME) up -d
|
|
|
|
|
2018-10-16 01:39:22 +03:00
|
|
|
# TODO? add custom test targets for individual tests (what used to be `multiple-tests` for example
|
|
|
|
# The docker files are still in docker/compose/docker*test*
|
2018-10-17 00:56:09 +03:00
|
|
|
.PHONY: test tests run-tests run-fast-tests test-fast
|
|
|
|
test: build-tests run-tests
|
|
|
|
tests: build-tests run-tests
|
|
|
|
test-fast: run-fast-tests
|
|
|
|
run-fast-tests: nobuild-tests run-tests
|
|
|
|
run-tests:
|
|
|
|
docker-compose -f tests/docker-compose-norebuild.yml -f tests/docker-compose.yml -p $(NAME) up -d
|
2018-10-16 01:39:22 +03:00
|
|
|
@echo "Waiting for the instance to come up..."
|
|
|
|
sleep 10
|
|
|
|
@echo "Running flake8.."
|
|
|
|
docker run -it mozdef_tester bash -c "source /opt/mozdef/envs/python/bin/activate && flake8 --config .flake8 ./"
|
|
|
|
@echo "Running py.test..."
|
|
|
|
docker run -it --network=mozdef_default mozdef_tester bash -c "source /opt/mozdef/envs/python/bin/activate && py.test --delete_indexes --delete_queues tests"
|
|
|
|
|
|
|
|
.PHONY: build
|
2018-10-16 00:37:10 +03:00
|
|
|
build:
|
2018-10-17 00:56:09 +03:00
|
|
|
docker-compose -f docker/compose/docker-compose-rebuild.yml -f docker/compose/docker-compose.yml -p $(NAME) $(NO_CACHE) build
|
2017-07-15 03:00:52 +03:00
|
|
|
|
2018-10-17 00:56:09 +03:00
|
|
|
.PHONY: nobuild
|
|
|
|
nobuild:
|
|
|
|
docker-compose -f docker/compose/docker-compose-norebuild.yml -f docker/compose/docker-compose.yml -p $(NAME) $(NO_CACHE) build
|
|
|
|
|
|
|
|
.PHONY: build-tests nobuild-tests
|
2018-10-16 00:37:10 +03:00
|
|
|
build-tests:
|
2018-10-17 00:56:09 +03:00
|
|
|
docker-compose -f tests/docker-compose-rebuild.yml -f tests/docker-compose.yml -p $(NAME) $(NO_CACHE) build
|
|
|
|
|
|
|
|
nobuild-tests:
|
|
|
|
docker-compose -f tests/docker-compose-norebuild.yml -f tests/docker-compose.yml -p $(NAME) $(NO_CACHE) build
|
2017-09-07 06:14:10 +03:00
|
|
|
|
2018-10-16 01:39:22 +03:00
|
|
|
.PHONY: stop down
|
|
|
|
stop: down
|
2018-10-16 00:37:10 +03:00
|
|
|
down:
|
2018-10-17 02:25:09 +03:00
|
|
|
docker-compose -f docker/compose/docker-compose-rebuild.yml -f docker/compose/docker-compose.yml -p $(NAME) stop
|
2017-07-15 03:00:52 +03:00
|
|
|
|
2018-10-17 02:35:00 +03:00
|
|
|
.PHONY: docker-push docker-get hub hub-get
|
2018-10-17 00:10:49 +03:00
|
|
|
docker-push: hub
|
|
|
|
hub:
|
|
|
|
docker login
|
2018-10-17 00:56:09 +03:00
|
|
|
@echo "Tagging current docker images with git HEAD shorthash..."
|
2018-10-17 00:10:49 +03:00
|
|
|
$(foreach var,$(DKR_IMAGES),docker tag $(var):latest mozdef/$(var):$(GITHASH);)
|
2018-10-17 00:56:09 +03:00
|
|
|
@echo "Uploading images to docker..."
|
2018-10-17 00:10:49 +03:00
|
|
|
$(foreach var,$(DKR_IMAGES),docker push mozdef/$(var):$(GITHASH);)
|
|
|
|
|
2018-10-17 02:35:00 +03:00
|
|
|
docker-get: hub-get
|
|
|
|
hub-get:
|
|
|
|
$(foreach var,$(DKR_IMAGES),docker pull mozdef/$(var):$(GITHASH);)
|
|
|
|
|
2018-10-16 01:39:22 +03:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2018-10-17 01:46:00 +03:00
|
|
|
-docker-compose -f docker/compose/docker-compose-rebuild.yml -f docker/compose/docker-compose.yml -p $(NAME) down -v --remove-orphans
|
2018-10-16 00:37:10 +03:00
|
|
|
# Shorthands
|
2018-10-16 01:39:22 +03:00
|
|
|
.PHONY: rebuild
|
|
|
|
rebuild: rm build
|