mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
Merge f3ba5d85ca into f970610c04
This commit is contained in:
commit
54914aa1c7
1 changed files with 17 additions and 11 deletions
28
appveyor.yml
28
appveyor.yml
|
|
@ -6,26 +6,32 @@ clone_depth: 5
|
||||||
version: "{branch}.{build}"
|
version: "{branch}.{build}"
|
||||||
environment:
|
environment:
|
||||||
global:
|
global:
|
||||||
|
# Go stuff
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
|
GO: c:\go\bin\go
|
||||||
# cache choco package files so we don't hit sourceforge all
|
GOROOT: c:\go
|
||||||
# the time.
|
# MSYS2 stuff
|
||||||
cache:
|
MSYS2_ARCH: x86_64
|
||||||
- c:\cache
|
MSYSTEM: MINGW64
|
||||||
|
PATH: C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;%PATH%
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- cmd: choco install --cache c:\cache golang mingw | find /v "Extracting "
|
- "%GO% version"
|
||||||
- refreshenv
|
# Update MSYS2
|
||||||
- cd c:\gopath\src\github.com\ethereum\go-ethereum
|
# - bash -lc "pacman --noconfirm --sync --refresh --refresh pacman"
|
||||||
|
# - bash -lc "pacman --noconfirm --sync --refresh --refresh --sysupgrade --sysupgrade"
|
||||||
|
# Install MinGW gcc
|
||||||
|
- bash -lc "pacman --noconfirm -S mingw-w64-gcc"
|
||||||
|
- gcc --version
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- go run build\ci.go install
|
- "%GO% run build\\ci.go install"
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- go run build\ci.go test -vet -coverage
|
- "%GO% run build\\ci.go test -vet -coverage"
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- go run build\ci.go archive -type zip
|
- "%GO% run build\\ci.go archive -type zip"
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: geth-*.zip
|
- path: geth-*.zip
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue