mirror of
https://github.com/valitydev/botkube.git
synced 2024-11-06 16:35:22 +00:00
4e831c5b6e
Signed-off-by: Prasad Ghangal <prasad.ghangal@gmail.com> ##### ISSUE TYPE - Bug fix Pull Request ##### SUMMARY The latest goreleaser doesn't support non-semver image tags. This PR replaces `latest` tags with `v9.99.9-dev` to support latest version of goreleaser
80 lines
2.4 KiB
Makefile
80 lines
2.4 KiB
Makefile
IMAGE_REPO=ghcr.io/infracloudio/botkube
|
|
TAG=$(shell cut -d'=' -f2- .release)
|
|
|
|
.DEFAULT_GOAL := build
|
|
.PHONY: release git-tag check-git-status build pre-build publish test system-check
|
|
|
|
# Show this help.
|
|
help:
|
|
@awk '/^#/{c=substr($$0,3);next}c&&/^[[:alpha:]][[:alnum:]_-]+:/{print substr($$1,1,index($$1,":")),c}1{c=0}' $(MAKEFILE_LIST) | column -s: -t
|
|
|
|
# Docker Tasks
|
|
# Make a release
|
|
release: check-git-status test git-tag gorelease
|
|
@echo "Successfully released version $(TAG)"
|
|
|
|
# Create a git tag
|
|
git-tag:
|
|
@echo "Creating a git tag"
|
|
@git add .release helm/botkube deploy-all-in-one.yaml deploy-all-in-one-tls.yaml CHANGELOG.md
|
|
@git commit -m "Release $(TAG)" ;
|
|
@git tag $(TAG) ;
|
|
@git push --tags origin develop;
|
|
@echo 'Git tag pushed successfully' ;
|
|
|
|
# Check git status
|
|
check-git-status:
|
|
@echo "Checking git status"
|
|
@if [ -n "$(shell git tag | grep $(TAG))" ] ; then echo 'ERROR: Tag already exists' && exit 1 ; fi
|
|
@if [ -z "$(shell git remote -v)" ] ; then echo 'ERROR: No remote to push tags to' && exit 1 ; fi
|
|
@if [ -z "$(shell git config user.email)" ] ; then echo 'ERROR: Unable to detect git credentials' && exit 1 ; fi
|
|
|
|
# test
|
|
test: system-check
|
|
@echo "Starting unit and integration tests"
|
|
@./hack/runtests.sh
|
|
|
|
# Build the binary
|
|
build: pre-build
|
|
@cd cmd/botkube;GOOS_VAL=$(shell go env GOOS) CGO_ENABLED=0 GOARCH_VAL=$(shell go env GOARCH) go build -o $(shell go env GOPATH)/bin/botkube
|
|
@echo "Build completed successfully"
|
|
|
|
# Build the image
|
|
container-image: pre-build
|
|
@echo "Building docker image"
|
|
@./hack/goreleaser.sh build
|
|
@echo "Docker image build successfully"
|
|
|
|
# Publish release using goreleaser
|
|
gorelease:
|
|
@echo "Publishing release with goreleaser"
|
|
@./hack/goreleaser.sh release
|
|
|
|
# Build project and push dev images with v9.99.9-dev tag
|
|
release-snapshot:
|
|
@./hack/goreleaser.sh release_snapshot
|
|
|
|
# system checks
|
|
system-check:
|
|
@echo "Checking system information"
|
|
@if [ -z "$(shell go env GOOS)" ] || [ -z "$(shell go env GOARCH)" ] ; \
|
|
then \
|
|
echo 'ERROR: Could not determine the system architecture.' && exit 1 ; \
|
|
else \
|
|
echo 'GOOS: $(shell go env GOOS)' ; \
|
|
echo 'GOARCH: $(shell go env GOARCH)' ; \
|
|
echo 'System information checks passed.'; \
|
|
fi ;
|
|
|
|
# Pre-build checks
|
|
pre-build: system-check
|
|
|
|
# Create KIND cluster
|
|
create-kind: system-check
|
|
@./hack/kind-cluster.sh create-kind
|
|
|
|
# Destroy KIND cluster
|
|
destroy-kind: system-check
|
|
@./hack/kind-cluster.sh destroy-kind
|
|
|