Files
kubeshark/Makefile
gadotroee c3d0941d9c Build push image to the right place and adjust makefile to use script (#35)
* build push docker image

* Update build-push-featurebranch.sh
2021-05-09 12:05:05 +03:00

63 lines
1.4 KiB
Makefile

C_Y=\033[1;33m
C_C=\033[0;36m
C_M=\033[0;35m
C_R=\033[0;41m
C_N=\033[0m
SHELL=/bin/bash
# HELP
# This will output the help for each task
# thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
.PHONY: help ui api cli tap docker
help: ## This help.
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help
# Variables and lists
TS_SUFFIX="$(shell date '+%s')"
ui: ## build UI
@(cd ui; npm i ; npm run build; )
@ls -l ui/build
cli: # build CLI
@(cd cli; echo "building cli" )
api: ## build API server
@(echo "building API server .." )
@(cd api; go build -o build/apiserver main.go)
@ls -l api/build
tap: ## build tap binary
@(cd tap; go build -o build/tap ./src)
@ls -l tap/build
docker: ## build Docker image
@(echo "building docker image" )
./build-push-featurebranch.sh
publish: ## build and publish Mizu docker image & CLI
@echo "publishing Docker image .. "
@echo "publishing CLI .. "
clean: clean-ui clean-api clean-cli clean-docker ## Clean all build artifacts
clean-ui:
@(rm -rf ui/build ; echo "UI cleanup done" )
clean-api:
@(rm -rf api/build ; echo "api cleanup done" )
clean-cli:
@(echo "CLI cleanup - NOT IMPLEMENTED YET " )
clean-tap:
@(cd tap; rm -rf build ; echo "tap cleanup done")
clean-docker:
@(echo "DOCKER cleanup - NOT IMPLEMENTED YET " )