-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a step to download optional .sh files for plugins
- Loading branch information
Torbjørn Vatn
committed
Apr 27, 2021
1 parent
59d8abd
commit 4d9989e
Showing
7 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.SILENT: ; | ||
BROKKR_PLUGINS := airflow/airflow@34b389a help/help@c09a208 | ||
SHA := `git rev-parse --short HEAD` | ||
BROKKR_PLUGINS := help/help@$(SHA) airflow/airflow@$(SHA) | ||
.DEFAULT_GOAL := help | ||
|
||
# Hack for local testing. This would be installed by the install script instead | ||
-include ../../brokkr/brokkr.mk | ||
-include ../../brokkr/brokkr.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.SILENT: ; | ||
SHA := `git rev-parse --short HEAD` | ||
BROKKR_PLUGINS := help/help@$(SHA) github/github-deploy@$(SHA) | ||
.DEFAULT_GOAL := help | ||
|
||
.PHONY: deploy | ||
deploy: ## Calls the deploy function from github/github-deploy | ||
@echo Deploying | ||
#$(call deploy, deploy-to-prod) | ||
|
||
-include ../../brokkr/brokkr.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
.SILENT: ; | ||
BROKKR_PLUGINS = help/help@c09a208 git/git-info@e3389a1 | ||
SHA := `git rev-parse --short HEAD` | ||
BROKKR_PLUGINS := help/help@$(SHA) git/git-info@$(SHA) | ||
.DEFAULT_GOAL := help | ||
|
||
.PHONY: hello.world | ||
hello.world: ## Prints hello world | ||
@echo Hello world | ||
|
||
-include ../../brokkr/brokkr.mk | ||
-include ../../brokkr/brokkr.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.PHONY: help | ||
help: ## List all described targets available | ||
awk -F ':|##' '/^[^\t].+:.*##/ { printf "\033[36m%-28s\033[0m -%s\n", $$1, $$NF }' $(MAKEFILE_LIST) | sort | ||
@awk -F ':|##' '/^[^\t].+:.*##/ { printf "\033[36m%-28s\033[0m -%s\n", $$1, $$NF }' $(MAKEFILE_LIST) | sort |