github.com/zakuro9715/packer@v0.8.2-0.20150707220638-da749e247094/appveyor.yml (about)

     1  # appveyor.yml reference : http://www.appveyor.com/docs/appveyor-yml
     2  
     3  version: "{build}"
     4  
     5  skip_tags: true
     6  
     7  branches:
     8    only:
     9      - master
    10  
    11  os: Windows Server 2012 R2
    12  
    13  environment:
    14    GOPATH: c:\gopath
    15    matrix:
    16    - GOARCH: 386
    17      GOVERSION: 1.4.2
    18    - GOARCH: amd64
    19      GOVERSION: 1.4.2
    20  
    21  clone_folder: c:\gopath\src\github.com\mitchellh\packer
    22  
    23  install:
    24    - set Path=c:\go\bin;%Path%
    25    - echo %Path%
    26    - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-%GOARCH%.msi
    27    - msiexec /i go%GOVERSION%.windows-%GOARCH%.msi /q
    28    - go version
    29    - go env
    30    - go get -d -v -t ./...
    31  
    32  build_script:
    33    - go test -v ./...
    34  
    35  test: off
    36  
    37  deploy: off