mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
da20785685
Former-commit-id: 23f542f43b4b493e38f5aa4c29788ed93a63b43b [formerly 71b23a6a28eb045fcfeab6329de69f1e5455486b] Former-commit-id: d12b3a6decc876f010a71f98e11df7387c1aaf2a
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
os: Visual Studio 2015
|
|
|
|
# Clone directly into GOPATH.
|
|
clone_folder: C:\gopath\src\github.com\ethereum\go-ethereum
|
|
clone_depth: 5
|
|
version: "{branch}.{build}"
|
|
environment:
|
|
global:
|
|
GOPATH: C:\gopath
|
|
CC: gcc.exe
|
|
matrix:
|
|
- GETH_ARCH: amd64
|
|
MSYS2_ARCH: x86_64
|
|
MSYS2_BITS: 64
|
|
MSYSTEM: MINGW64
|
|
PATH: C:\msys64\mingw64\bin\;C:\Program Files (x86)\NSIS\;%PATH%
|
|
- GETH_ARCH: 386
|
|
MSYS2_ARCH: i686
|
|
MSYS2_BITS: 32
|
|
MSYSTEM: MINGW32
|
|
PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH%
|
|
|
|
install:
|
|
- git submodule update --init
|
|
- rmdir C:\go /s /q
|
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.9.2.windows-%GETH_ARCH%.zip
|
|
- 7z x go1.9.2.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
|
|
- go version
|
|
- gcc --version
|
|
|
|
build_script:
|
|
- go run build\ci.go install
|
|
|
|
after_build:
|
|
- 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 CGO_ENABLED=1
|
|
- go run build\ci.go test -coverage
|