Merge pull request #27 from vbatts/makefile

Makefile: have cleanup and dependencies
This commit is contained in:
Daniel J Walsh 2019-09-18 09:20:42 -04:00 committed by GitHub
commit 1263c398f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,30 @@
SRC := ./BuildSourceImage.sh SRC := ./BuildSourceImage.sh
CTR_IMAGE := localhost/containers/buildsourceimage CTR_IMAGE := localhost/containers/buildsourceimage
CTR_ENGINE ?= podman CTR_ENGINE ?= podman
cleanfiles =
all: validate all: validate
.PHONY: validate validate: .validate
validate: $(SRC)
shellcheck $(SRC)
.PHONY: build-container cleanfiles += .validate
build-container: Dockerfile .validate: $(SRC)
shellcheck $(SRC) && touch $@
build-container: .build-container
cleanfiles += .build-container
.build-container: .validate Dockerfile $(SRC)
@echo @echo
@echo "Building BuildSourceImage Container" @echo "Building BuildSourceImage Container"
$(CTR_ENGINE) build --quiet --file Dockerfile --tag $(CTR_IMAGE) . $(CTR_ENGINE) build --quiet --file Dockerfile --tag $(CTR_IMAGE) . && touch $@
.PHONY: test-integration .PHONY: test-integration
test-integration: build-container test-integration: .build-container
@echo @echo
@echo "Running integration tests" @echo "Running integration tests"
CTR_IMAGE=$(CTR_IMAGE) CTR_ENGINE=$(CTR_ENGINE) bats test/ CTR_IMAGE=$(CTR_IMAGE) CTR_ENGINE=$(CTR_ENGINE) bats test/
clean:
if [ -n "$(cleanfiles)" ] ; then rm -rf $(cleanfiles) ; fi