appveyor.yml: don't install Go and MinGW, they're already there

This commit is contained in:
Felix Lange 2016-07-13 14:58:48 +02:00
parent f970610c04
commit 2721656d46

View file

@ -7,16 +7,15 @@ version: "{branch}.{build}"
environment: environment:
global: global:
GOPATH: c:\gopath GOPATH: c:\gopath
# MinGW and Go are preinstalled. Go is already in PATH.
# cache choco package files so we don't hit sourceforge all PATH: c:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin:%PATH%
# the time.
cache:
- c:\cache
install: install:
- cmd: choco install --cache c:\cache golang mingw | find /v "Extracting "
- refreshenv
- cd c:\gopath\src\github.com\ethereum\go-ethereum - cd c:\gopath\src\github.com\ethereum\go-ethereum
- dir c:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin
- echo %PATH%
- go version
- gcc --version
build_script: build_script:
- go run build\ci.go install - go run build\ci.go install