forked from cerc-io/plugeth
appveyor: use native 32bit go
This simplifies the build and should speed it up a bit because the standard library doesn't need to be cross compiled on the 32bit builder.
This commit is contained in:
parent
8ed72a8470
commit
92959cd4ef
11
appveyor.yml
11
appveyor.yml
@ -22,19 +22,18 @@ environment:
|
|||||||
|
|
||||||
install:
|
install:
|
||||||
- rmdir C:\go /s /q
|
- rmdir C:\go /s /q
|
||||||
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.7.3.windows-amd64.zip
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.7.3.windows-%GETH_ARCH%.zip
|
||||||
- 7z x go1.7.3.windows-amd64.zip -y -oC:\ > NUL
|
- 7z x go1.7.3.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
|
||||||
- go version
|
- go version
|
||||||
- gcc --version
|
- gcc --version
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- go run build\ci.go install -arch %GETH_ARCH%
|
- go run build\ci.go install
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- go run build\ci.go archive -arch %GETH_ARCH% -type zip -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
|
- go run build\ci.go archive -type zip -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
|
||||||
- go run build\ci.go nsis -arch %GETH_ARCH% -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
|
- go run build\ci.go nsis -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- set GOARCH=%GETH_ARCH%
|
|
||||||
- set CGO_ENABLED=1
|
- set CGO_ENABLED=1
|
||||||
- go run build\ci.go test -vet -coverage
|
- go run build\ci.go test -vet -coverage
|
||||||
|
Loading…
Reference in New Issue
Block a user