Skip to content

Commit 03b2f56

Browse files
fjlkaralabe
authored andcommitted
[release/1.4.14] appveyor.yml: don't install Go and MinGW, they're already there (ethereum#2813)
(cherry picked from commit e11489e)
1 parent 7a5843d commit 03b2f56

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

appveyor.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,28 @@ clone_depth: 5
66
version: "{branch}.{build}"
77
environment:
88
global:
9+
# Go stuff
910
GOPATH: c:\gopath
10-
11-
# cache choco package files so we don't hit sourceforge all
12-
# the time.
13-
cache:
14-
- c:\cache
11+
GO: c:\go\bin\go
12+
GOROOT: c:\go
13+
CC: C:\msys64\mingw64\bin\gcc.exe
14+
# MSYS2 stuff
15+
MSYS2_ARCH: x86_64
16+
MSYSTEM: MINGW64
17+
PATH: C:\msys64\mingw64\bin\;%PATH%
1518

1619
install:
17-
- cmd: choco install --cache c:\cache golang mingw | find /v "Extracting "
18-
- refreshenv
19-
- cd c:\gopath\src\github.com\ethereum\go-ethereum
20+
- "%GO% version"
21+
- "%CC% --version"
2022

2123
build_script:
22-
- go run build\ci.go install
24+
- "%GO% run build\\ci.go install"
2325

2426
test_script:
25-
- go run build\ci.go test -vet -coverage
27+
- "%GO% run build\\ci.go test -vet -coverage"
2628

2729
after_build:
28-
- go run build\ci.go archive -type zip
30+
- "%GO% run build\\ci.go archive -type zip"
2931

3032
artifacts:
3133
- path: geth-*.zip

0 commit comments

Comments
 (0)