aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-07-14 16:33:20 +0800
committerGitHub <noreply@github.com>2016-07-14 16:33:20 +0800
commite11489eb5f58a63cb39a3189de7263837dc95b93 (patch)
tree832e5686b28d10b71e5c2cc9c62c41ba5aef4985 /appveyor.yml
parentf970610c0442a7a4582529c01fb67403cea8bcd6 (diff)
downloaddexon-e11489eb5f58a63cb39a3189de7263837dc95b93.tar
dexon-e11489eb5f58a63cb39a3189de7263837dc95b93.tar.gz
dexon-e11489eb5f58a63cb39a3189de7263837dc95b93.tar.bz2
dexon-e11489eb5f58a63cb39a3189de7263837dc95b93.tar.lz
dexon-e11489eb5f58a63cb39a3189de7263837dc95b93.tar.xz
dexon-e11489eb5f58a63cb39a3189de7263837dc95b93.tar.zst
dexon-e11489eb5f58a63cb39a3189de7263837dc95b93.zip
appveyor.yml: don't install Go and MinGW, they're already there (#2813)
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml24
1 files changed, 13 insertions, 11 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 89d3dfe3d..0b1c919d8 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -6,26 +6,28 @@ clone_depth: 5
version: "{branch}.{build}"
environment:
global:
+ # Go stuff
GOPATH: c:\gopath
-
-# cache choco package files so we don't hit sourceforge all
-# the time.
-cache:
- - c:\cache
+ GO: c:\go\bin\go
+ GOROOT: c:\go
+ CC: C:\msys64\mingw64\bin\gcc.exe
+ # MSYS2 stuff
+ MSYS2_ARCH: x86_64
+ MSYSTEM: MINGW64
+ PATH: C:\msys64\mingw64\bin\;%PATH%
install:
- - cmd: choco install --cache c:\cache golang mingw | find /v "Extracting "
- - refreshenv
- - cd c:\gopath\src\github.com\ethereum\go-ethereum
+ - "%GO% version"
+ - "%CC% --version"
build_script:
- - go run build\ci.go install
+ - "%GO% run build\\ci.go install"
test_script:
- - go run build\ci.go test -vet -coverage
+ - "%GO% run build\\ci.go test -vet -coverage"
after_build:
- - go run build\ci.go archive -type zip
+ - "%GO% run build\\ci.go archive -type zip"
artifacts:
- path: geth-*.zip