github.com/greysond/terraform@v0.8.5-0.20170124173113-439b5507bbe9/.travis.yml (about)

     1  sudo: false
     2  language: go
     3  go:
     4  - 1.7.4
     5  - 1.8rc2
     6  install:
     7  # This script is used by the Travis build to install a cookie for
     8  # go.googlesource.com so rate limits are higher when using `go get` to fetch
     9  # packages that live there.
    10  # See: https://github.com/golang/go/issues/12933
    11  - bash scripts/gogetcookie.sh
    12  - go get github.com/kardianos/govendor
    13  script:
    14  - make vendor-status vet test
    15  - GOOS=windows go build
    16  branches:
    17    only:
    18    - master
    19  notifications:
    20    irc:
    21      channels:
    22      - irc.freenode.org#terraform-tool
    23      skip_join: true
    24      use_notice: true
    25  matrix:
    26    fast_finish: true
    27    allow_failures:
    28    - go: tip