diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-11-23 18:24:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 18:24:28 +0800 |
commit | e05d35e6e04f1378c18861016f96b39b35cef4f2 (patch) | |
tree | 78102f23cfbba026810c2fff717f2187e5c5ca34 /appveyor.yml | |
parent | f7da5b29f0917575850849c7fb20bcc5376ab772 (diff) | |
parent | e1e2df656a46c428bfb487e5ec3d126905ff003e (diff) | |
download | go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.gz go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.bz2 go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.lz go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.xz go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.zst go-tangerine-e05d35e6e04f1378c18861016f96b39b35cef4f2.zip |
Merge pull request #3317 from fjl/build-unstable-simplify
build, internal/build: simplify unstable build checks
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml index 03ffdca9d..dbdda9b6c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,19 +22,18 @@ environment: install: - rmdir C:\go /s /q - - appveyor DownloadFile https://storage.googleapis.com/golang/go1.7.3.windows-amd64.zip - - 7z x go1.7.3.windows-amd64.zip -y -oC:\ > NUL + - appveyor DownloadFile https://storage.googleapis.com/golang/go1.7.3.windows-%GETH_ARCH%.zip + - 7z x go1.7.3.windows-%GETH_ARCH%.zip -y -oC:\ > NUL - go version - gcc --version build_script: - - go run build\ci.go install -arch %GETH_ARCH% + - go run build\ci.go install 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 nsis -arch %GETH_ARCH% -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 -signer WINDOWS_SIGNING_KEY -upload gethstore/builds test_script: - - set GOARCH=%GETH_ARCH% - set CGO_ENABLED=1 - go run build\ci.go test -vet -coverage |