github.com/sdboyer/gps@v0.16.3/appveyor.yml (about)

     1  version: build-{build}.{branch}
     2  
     3  clone_folder: C:\gopath\src\github.com\sdboyer\gps
     4  shallow_clone: true
     5  
     6  environment:
     7    GOPATH: C:\gopath
     8  
     9  platform:
    10    - x64
    11  
    12  install:
    13    - go version
    14    - go env
    15    - choco install bzr
    16    - set PATH=C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial\;%PATH%
    17  build_script:
    18    - go get github.com/Masterminds/glide
    19    - C:\gopath\bin\glide install
    20  
    21  test_script:
    22    - go test . ./internal/... ./pkgtree/...
    23    - go build example.go
    24  
    25  deploy: off