github.com/hairyhenderson/templater@v3.5.0+incompatible/appveyor.yml (about)

     1  image:
     2    - Visual Studio 2015
     3  version: "{build}"
     4  
     5  clone_folder: c:\gopath\src\github.com\hairyhenderson\gomplate
     6  
     7  environment:
     8    GOPATH: c:\gopath
     9  
    10  init:
    11    - git config --global core.autocrlf input
    12  
    13  install:
    14    - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
    15    - go version
    16  
    17  build: false
    18  deploy: false
    19  
    20  test_script:
    21    - go build -o bin/gomplate.exe github.com/hairyhenderson/gomplate/cmd/gomplate
    22    - go test -v -tags=integration -ldflags "-X github.com/hairyhenderson/gomplate/tests/integration.GomplateBin=c:/gopath/src/github.com/hairyhenderson/gomplate/bin/gomplate.exe" ./tests/integration -check.v
    23    - go test -v ./... & IF ERRORLEVEL == 1 EXIT 1