github.com/golang/dep@v0.5.4/appveyor.yml (about)

     1  version: "{build}"
     2  
     3  # Source Config
     4  
     5  clone_folder: c:\gopath\src\github.com\golang\dep
     6  
     7  # Build host
     8  
     9  environment:
    10    GOPATH: c:\gopath
    11    DEPTESTBYPASS501: 1
    12    GOVERSION: 1.9
    13  
    14  init:
    15    - git config --global core.autocrlf input
    16  
    17  # Build
    18  
    19  install:
    20    # Install the specific Go version.
    21    - rmdir c:\go /s /q
    22    - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
    23    - msiexec /i go%GOVERSION%.windows-amd64.msi /q
    24    - choco install bzr
    25    - set Path=c:\go\bin;c:\gopath\bin;C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial\%Path%
    26    - go version
    27    - go env
    28  
    29  build: false
    30  deploy: false
    31  
    32  test_script:
    33    - go build github.com/golang/dep/cmd/dep
    34    - for /f "" %%G in ('go list github.com/golang/dep/...') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)