.travis.yml
author Mikael Berthe <mikael@lilotux.net>
Tue, 20 Mar 2018 15:50:32 +0100
changeset 194 660233815ca8
parent 183 498d5d188119
child 211 d69f6f1ad460
permissions -rw-r--r--
Printers: Remove previous instance statistics
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:
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
- 1.7
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
- 1.8
183
498d5d188119 Update travis file
Mikael Berthe <mikael@lilotux.net>
parents: 131
diff changeset
     5
- 1.9
498d5d188119 Update travis file
Mikael Berthe <mikael@lilotux.net>
parents: 131
diff changeset
     6
- 1.10
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
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    15
install:
128
e0621d1b9230 Update travis YAML file
Mikael Berthe <mikael@lilotux.net>
parents: 124
diff changeset
    16
- go get golang.org/x/net/html
1
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    17
- go get github.com/spf13/cobra
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    18
- go get github.com/spf13/viper
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    19
- go get github.com/McKael/madon
cc41d888fad5 Add Travis yaml file
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    20
- go get github.com/ghodss/yaml
45
b58a7ea1aeb2 Use github.com/pkg/errors
Mikael Berthe <mikael@lilotux.net>
parents: 37
diff changeset
    21
- go get github.com/pkg/errors
124
20d514540f37 Improve text wrapping
Mikael Berthe <mikael@lilotux.net>
parents: 96
diff changeset
    22
- go get github.com/kr/text
50
c6adf9d9e996 Disable ANSI sequences when stdout is not a TTY
Mikael Berthe <mikael@lilotux.net>
parents: 45
diff changeset
    23
- go get github.com/mattn/go-isatty
131
6461e0637767 Update travis file
Mikael Berthe <mikael@lilotux.net>
parents: 128
diff changeset
    24
- go get github.com/stretchr/testify/assert