2016-05-25 12:07:57 +00:00
|
|
|
os: Visual Studio 2015
|
|
|
|
|
|
|
|
# Clone directly into GOPATH.
|
2016-11-08 21:55:39 +00:00
|
|
|
clone_folder: C:\gopath\src\github.com\ethereum\go-ethereum
|
2016-05-25 12:07:57 +00:00
|
|
|
clone_depth: 5
|
|
|
|
version: "{branch}.{build}"
|
|
|
|
environment:
|
|
|
|
global:
|
2016-11-08 21:55:39 +00:00
|
|
|
GOPATH: C:\gopath
|
2016-11-06 21:37:08 +00:00
|
|
|
CC: gcc.exe
|
|
|
|
matrix:
|
|
|
|
- GETH_ARCH: amd64
|
|
|
|
MSYS2_ARCH: x86_64
|
|
|
|
MSYS2_BITS: 64
|
|
|
|
MSYSTEM: MINGW64
|
2016-11-08 21:55:39 +00:00
|
|
|
PATH: C:\msys64\mingw64\bin\;C:\Program Files (x86)\NSIS\;%PATH%
|
2016-11-06 21:37:08 +00:00
|
|
|
- GETH_ARCH: 386
|
|
|
|
MSYS2_ARCH: i686
|
|
|
|
MSYS2_BITS: 32
|
|
|
|
MSYSTEM: MINGW32
|
2016-11-08 21:55:39 +00:00
|
|
|
PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH%
|
2016-05-25 12:07:57 +00:00
|
|
|
|
|
|
|
install:
|
2017-07-11 11:49:14 +00:00
|
|
|
- git submodule update --init
|
2016-11-08 21:55:39 +00:00
|
|
|
- rmdir C:\go /s /q
|
2017-08-28 08:15:29 +00:00
|
|
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.9.windows-%GETH_ARCH%.zip
|
|
|
|
- 7z x go1.9.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
|
2016-11-06 21:37:08 +00:00
|
|
|
- go version
|
|
|
|
- gcc --version
|
2016-05-25 12:07:57 +00:00
|
|
|
|
|
|
|
build_script:
|
2016-11-21 11:22:00 +00:00
|
|
|
- go run build\ci.go install
|
2016-05-25 12:07:57 +00:00
|
|
|
|
|
|
|
after_build:
|
2016-11-21 11:22:00 +00:00
|
|
|
- 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
|
2016-05-25 12:07:57 +00:00
|
|
|
|
2016-11-06 21:37:08 +00:00
|
|
|
test_script:
|
|
|
|
- set CGO_ENABLED=1
|
2017-03-23 14:48:30 +00:00
|
|
|
- go run build\ci.go test -coverage
|