.travis.yml
author Mikael Berthe <mikael@lilotux.net>
Sat, 29 Sep 2018 12:40:01 +0200
changeset 240 7c3e7b53cbd3
parent 239 605a00e9d1ab
child 242 2a9ec03fe5a1
permissions -rw-r--r--
Enable GO111MODULE in Travis config
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
language: go
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
go:
211
d69f6f1ad460 Travis: Properly quote Golang releases
Mikael Berthe <mikael@lilotux.net>
parents: 194
diff changeset
     3
- "1.10"
239
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents: 211
diff changeset
     4
- "1.11"
1
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
- master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
matrix:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
  allow_failures:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
    - go: master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
  fast_finish: true
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
branches:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
  only:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
  - master
240
7c3e7b53cbd3 Enable GO111MODULE in Travis config
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
    13
env:
7c3e7b53cbd3 Enable GO111MODULE in Travis config
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
    14
  - GO111MODULE=on
7c3e7b53cbd3 Enable GO111MODULE in Travis config
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
    15
install: true