From 2721656d4672004f1de4170b360d03e9d0d7262a Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 13 Jul 2016 14:58:48 +0200 Subject: [PATCH] appveyor.yml: don't install Go and MinGW, they're already there --- appveyor.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 89d3dfe3d7..e6b50d82b0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,16 +7,15 @@ version: "{branch}.{build}" environment: global: GOPATH: c:\gopath - -# cache choco package files so we don't hit sourceforge all -# the time. -cache: - - c:\cache + # MinGW and Go are preinstalled. Go is already in PATH. + PATH: c:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin:%PATH% install: - - cmd: choco install --cache c:\cache golang mingw | find /v "Extracting " - - refreshenv - 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: - go run build\ci.go install