-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from lpabon/makefile
Makefile for csi-sanity
- Loading branch information
Showing
2 changed files
with
63 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,59 @@ | ||
all: csi-sanity | ||
APP_NAME := csi-sanity | ||
#VER :=$(shell git describe).$(shell git log --oneline -1 --pretty=format:"%h") | ||
VER :=$(shell git log --oneline -1 --pretty=format:"%h") | ||
BRANCH := $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD)) | ||
SHA := $(shell git rev-parse --short HEAD) | ||
ARCH := $(shell go env GOARCH) | ||
GOOS := $(shell go env GOOS) | ||
DIR=. | ||
|
||
csi-sanity: sanity_test.go | ||
go test -c -o csi-sanity | ||
ifdef APP_SUFFIX | ||
VERSION = $(VER)-$(subst /,-,$(APP_SUFFIX)) | ||
else | ||
ifeq (master,$(BRANCH)) | ||
VERSION = $(VER) | ||
else | ||
VERSION = $(VER)-$(BRANCH) | ||
endif | ||
endif | ||
|
||
LDFLAGS :=-ldflags "-w -X github.com/kubernetes-csi/csi-test/cmd/csi-sanity.VERSION=$(VERSION) -extldflags '-z relro -z now'" | ||
PACKAGE :=$(DIR)/dist/$(APP_NAME)-$(VERSION).$(GOOS).$(ARCH).tar.gz | ||
|
||
all: $(APP_NAME) | ||
|
||
$(APP_NAME): Makefile sanity_test.go | ||
go test $(LDFLAGS) -c -o $(APP_NAME) | ||
|
||
clean: | ||
rm -f csi-sanity | ||
rm -rf $(DIR)/dist | ||
|
||
dist: $(PACKAGE) | ||
|
||
$(PACKAGE): $(APP_NAME) | ||
@echo Packaging Binaries... | ||
@mkdir -p tmp/$(APP_NAME) | ||
@cp $(APP_NAME) tmp/$(APP_NAME)/ | ||
@mkdir -p $(DIR)/dist/ | ||
tar -czf $@ -C tmp $(APP_NAME); | ||
@rm -rf tmp | ||
@echo | ||
@echo Package $@ saved in dist directory | ||
|
||
linux_amd64_dist: | ||
GOOS=linux GOARCH=amd64 $(MAKE) dist | ||
|
||
linux_arm_dist: | ||
GOOS=linux GOARCH=arm $(MAKE) dist | ||
|
||
linux_arm64_dist: | ||
GOOS=linux GOARCH=arm64 $(MAKE) dist | ||
|
||
darwin_amd64_dist: | ||
GOOS=darwin GOARCH=amd64 $(MAKE) dist | ||
|
||
release: darwin_amd64_dist linux_arm_dist linux_amd64_dist linux_arm64_dist | ||
|
||
.PHONY: release darwin_amd64_dist linux_arm64_dist linux_amd64_dist \ | ||
linux_arm_dist linux_amd64_dist clean |
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