mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
build: remove support for go1.4, add go1.7
This commit is contained in:
parent
740691b080
commit
2d30a6e8a7
@ -2,9 +2,9 @@ sudo: false
|
|||||||
language: go
|
language: go
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- 1.4.2
|
- 1.5.4
|
||||||
- 1.5.3
|
- 1.6.3
|
||||||
- 1.6.2
|
- 1.7rc6
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- make
|
- make
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
export PATH := $(GOPATH)/bin:$(PATH)
|
export PATH := $(GOPATH)/bin:$(PATH)
|
||||||
export GOPATH := $(shell pwd)/Godeps/_workspace:$(GOPATH)
|
export GO15VENDOREXPERIMENT := 1
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
export PATH := $(GOPATH)/bin:$(PATH)
|
export PATH := $(GOPATH)/bin:$(PATH)
|
||||||
export OLDGOPATH := $(GOPATH)
|
export GO15VENDOREXPERIMENT := 1
|
||||||
export GOPATH := $(shell pwd)/Godeps/_workspace:$(GOPATH)
|
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build: gox app
|
build: gox app
|
||||||
|
|
||||||
gox:
|
gox:
|
||||||
GOPATH=$(OLDGOPATH) go get github.com/mitchellh/gox
|
go get github.com/mitchellh/gox
|
||||||
|
|
||||||
app:
|
app:
|
||||||
gox -osarch "darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm windows/386 windows/amd64" ./src/...
|
gox -osarch "darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm windows/386 windows/amd64" ./src/...
|
||||||
|
Loading…
Reference in New Issue
Block a user