aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 0b1c919d826d49eca8035357e278689345910ea9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
os: Visual Studio 2015

# Clone directly into GOPATH.
clone_folder: c:\gopath\src\github.com\ethereum\go-ethereum
clone_depth: 5
version: "{branch}.{build}"
environment:
  global:
    # Go stuff
    GOPATH: c:\gopath
    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:
  - "%GO% version"
  - "%CC% --version"

build_script:
  - "%GO% run build\\ci.go install"

test_script:
  - "%GO% run build\\ci.go test -vet -coverage"

after_build:
  - "%GO% run build\\ci.go archive -type zip"

artifacts:
  - path: geth-*.zip