File: .travis.yml

package info (click to toggle)
golang-github-aws-aws-sdk-go 1.16.18%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, buster-backports, experimental
  • size: 93,084 kB
  • sloc: ruby: 193; makefile: 174; xml: 11
file content (42 lines) | stat: -rw-r--r-- 752 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: go

sudo: required

os:
    - linux
    - osx
go:
    - 1.6.x
    - 1.7.x
    - 1.8.x
    - 1.9.x
    - 1.10.x
    - 1.11.x
    - tip

matrix:
    allow_failures:
        - go: tip
    exclude:
          # OSX 1.6.4 is not present in travis.
          # https://github.com/travis-ci/travis-ci/issues/10309
        - go: 1.6.x
          os: osx
    include:
        - os: linux
          go: 1.5.x
          # Use Go 1.5's vendoring experiment for 1.5 tests.
          env: GO15VENDOREXPERIMENT=1

script:
  - if [ $TRAVIS_GO_VERSION == "tip" ] ||
    [ $TRAVIS_GO_VERSION == "1.11.x" ] || 
    [ $TRAVIS_GO_VERSION == "1.10.x" ]; then
        make ci-test;
    else
        make unit-old-go-race-cover;
    fi

branches:
  only:
    - master