github.com/shahidhk/glide@v0.13.2-0.20171214012703-3e13fd16ed5b/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.5.x
     5    - 1.6.x
     6    - 1.7.x
     7    - 1.8.x
     8    - 1.9.x
     9    - tip
    10  
    11  # Setting sudo access to false will let Travis CI use containers rather than
    12  # VMs to run the tests. For more details see:
    13  # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
    14  # - http://docs.travis-ci.com/user/workers/standard-infrastructure/
    15  sudo: false
    16  
    17  # The default script is go test -v ./... which will test everything
    18  # in the vendor directory. We don't need to test all dependent packages.
    19  # Only testing this project.
    20  script:
    21    - GO15VENDOREXPERIMENT=1 make test integration-test verify-version
    22  
    23  notifications:
    24    webhooks:
    25      urls:
    26        - https://webhooks.gitter.im/e/67e4b42cbf763625d0b4
    27      on_success: change
    28      on_failure: always
    29      on_start: never