github.com/nevins-b/terraform@v0.3.8-0.20170215184714-bbae22007d5a/.travis.yml (about)

     1  sudo: false
     2  language: go
     3  go:
     4  - 1.7.5
     5  - 1.8rc3
     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 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