mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Merge pull request #1119 from codysoyland/cluster-resize-fix-prerelease-upload
Cluster resize fix prerelease upload
This commit is contained in:
commit
15534daae7
2 changed files with 3 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ before_deploy:
|
|||
- pip install awscli --user `whoami`
|
||||
deploy:
|
||||
- provider: script
|
||||
script: make prerelease-upload
|
||||
script: make prerelease-upload GOOS=linux GOARCH=amd64
|
||||
skip_cleanup: true
|
||||
on:
|
||||
all_branches: true
|
||||
|
|
|
|||
3
Makefile
3
Makefile
|
|
@ -11,7 +11,8 @@ PKGS := $(shell cd $(GOPATH)/src/$(CLONE_URL); go list ./... | grep -v vendor)
|
|||
BUILD_TIME=`date -u +%FT%T%z`
|
||||
LDFLAGS="-X github.com/pilosa/pilosa.Version=$(VERSION) -X github.com/pilosa/pilosa.BuildTime=$(BUILD_TIME)"
|
||||
DOCKER_GOLANG_IMAGE=golang:latest
|
||||
BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
|
||||
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
||||
BRANCH := $(if $(TRAVIS_BRANCH),$(TRAVIS_BRANCH),$(GIT_BRANCH))
|
||||
BRANCH_IDENTIFIER := $(BRANCH)-$(GOOS)-$(GOARCH)
|
||||
|
||||
default: test pilosa
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue