github.com/petermattis/pebble@v0.0.0-20190905164901-ab51a2166067/.travis.yml (about)

     1  language: go
     2  
     3  install: go get -t -v ./...
     4  
     5  script: go test -v ./...
     6  
     7  matrix:
     8    include:
     9      - name: "go1.11.x"
    10        go: 1.11.x
    11        gobuild_args: -v
    12      - name: "go1.12.x"
    13        go: 1.12.x
    14        gobuild_args: -v
    15      - name: "go1.12.x race"
    16        go: 1.12.x
    17        gobuild_args: -v -race
    18      - name: "go1.12.x windows"
    19        go: 1.12.x
    20        # NB: "env: GOOS=windows" does not have the desired effect.
    21        script: GOOS=windows go build -v ./...
    22      - name: "go1.12.x freebsd"
    23        go: 1.12.x
    24        # NB: "env: GOOS=freebsd" does not have the desired effect.
    25        script: GOOS=freebsd go build -v ./...
    26  
    27  notifications:
    28    email:
    29      recipients:
    30        - peter@cockroachlabs.com
    31      on_success: never
    32      on_failure: always