49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
| .PHONY: clean copy docker push tools test
 | |
| 
 | |
| BINARY ?= postgres-operator-e2e-tests
 | |
| BUILD_FLAGS ?= -v
 | |
| CGO_ENABLED ?= 0
 | |
| ifeq ($(RACE),1)
 | |
| 	BUILD_FLAGS += -race -a
 | |
|     CGO_ENABLED=1
 | |
| endif
 | |
| 
 | |
| LOCAL_BUILD_FLAGS ?= $(BUILD_FLAGS)
 | |
| LDFLAGS ?= -X=main.version=$(VERSION)
 | |
| 
 | |
| IMAGE            ?= registry.opensource.zalan.do/acid/$(BINARY)
 | |
| VERSION          ?= $(shell git describe --tags --always --dirty)
 | |
| TAG              ?= $(VERSION)
 | |
| GITHEAD          = $(shell git rev-parse --short HEAD)
 | |
| GITURL           = $(shell git config --get remote.origin.url)
 | |
| GITSTATU         = $(shell git status --porcelain || echo 'no changes')
 | |
| TTYFLAGS         = $(shell test -t 0 && echo '-it')
 | |
| 
 | |
| ifndef GOPATH
 | |
| 	GOPATH := $(HOME)/go
 | |
| endif
 | |
| 
 | |
| PATH := $(GOPATH)/bin:$(PATH)
 | |
| 
 | |
| default: tools
 | |
| 
 | |
| clean:
 | |
| 	rm -rf manifests
 | |
| 
 | |
| copy: clean
 | |
| 	mkdir manifests
 | |
| 	cp ../manifests -r .
 | |
| 
 | |
| docker: copy
 | |
| 	docker build --build-arg "VERSION=$(VERSION)" -t "$(IMAGE):$(TAG)" .
 | |
| 
 | |
| push: docker
 | |
| 	docker push "$(IMAGE):$(TAG)"
 | |
| 
 | |
| tools: docker
 | |
| 	# install pinned version of 'kind'
 | |
| 	GO111MODULE=on go get sigs.k8s.io/kind@v0.5.1
 | |
| 
 | |
| e2etest:
 | |
| 	./run.sh
 |