.travis.yml
author Mikael Berthe <mikael@lilotux.net>
Sun, 13 Jan 2019 12:58:50 +0100
changeset 245 910f00ab2799
parent 242 2a9ec03fe5a1
child 248 bd6f15d41b78
permissions -rw-r--r--
Fix oauth2 not displaying the new token If the configuration file contains an old token, this token was displayed after an oauth2 renewal instead of the new one.
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:
242
2a9ec03fe5a1 Use vendoring for backward compatibility
Mikael Berthe <mikael@lilotux.net>
parents: 240
diff changeset
     3
- "1.8"
2a9ec03fe5a1 Use vendoring for backward compatibility
Mikael Berthe <mikael@lilotux.net>
parents: 240
diff changeset
     4
- "1.9"
211
d69f6f1ad460 Travis: Properly quote Golang releases
Mikael Berthe <mikael@lilotux.net>
parents: 194
diff changeset
     5
- "1.10"
239
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents: 211
diff changeset
     6
- "1.11"
1
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
- master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
matrix:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
  allow_failures:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
    - go: master
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
  fast_finish: true
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
branches:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    13
  only:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    14
  - master
240
7c3e7b53cbd3 Enable GO111MODULE in Travis config
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
    15
env:
7c3e7b53cbd3 Enable GO111MODULE in Travis config
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
    16
  - GO111MODULE=on
7c3e7b53cbd3 Enable GO111MODULE in Travis config
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
    17
install: true