aboutsummaryrefslogblamecommitdiffstats
path: root/appveyor.yml
blob: 0b1c919d826d49eca8035357e278689345910ea9 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                           
              
                     






                                       

        

                    

             
                                   

            
                                               

            
                                             


                    
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