Johan Wassberg
57b302a299
Without this fix: ``` ➜ nunoc-ops git:(master) make db On branch master Your branch is up to date with 'origin/master'. nothing to commit, working tree clean make: *** [db] Error 1 ``` With this fix: ``` ➜ swamid-ops git:(master) ✗ make db make: Nothing to be done for `db'. ``` Will make it easier to only use `make tag` when to sign changes.
23 lines
540 B
Makefile
23 lines
540 B
Makefile
DIST := "ubuntu:latest"
|
|
|
|
cosmos:
|
|
fab all cosmos
|
|
|
|
upgrade:
|
|
fab upgrade
|
|
|
|
db: global/overlay/etc/puppet/cosmos-db.yaml
|
|
|
|
global/overlay/etc/puppet/cosmos-db.yaml: global/overlay/etc/puppet/cosmos-rules.yaml:
|
|
@python ./fabfile/db.py > global/overlay/etc/puppet/cosmos-db.yaml
|
|
@git add global/overlay/etc/puppet/cosmos-db.yaml && git commit -m "update db" global/overlay/etc/puppet/cosmos-db.yaml
|
|
|
|
tag: db
|
|
./bump-tag
|
|
|
|
test_in_docker:
|
|
docker run --rm -it \
|
|
-v ${CURDIR}:/multiverse:ro \
|
|
\
|
|
$(DIST) /multiverse/scripts/test-in-docker.sh
|