diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-11 18:14:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-11 18:14:08 +0800 |
commit | b52fde7cf7ce50725830a9d7ddb61e0e8094c7cd (patch) | |
tree | b6b5eb1ac26c2aaef462f48d6f6738d588c44ed4 /vendor/gopkg.in/urfave/cli.v1/.travis.yml | |
parent | 2b4d0b6ff9954de72177980213e7fee0081973d1 (diff) | |
parent | d78f9b834ade0f1ebcf2532bf90d01c85ad50a8e (diff) | |
download | go-tangerine-b52fde7cf7ce50725830a9d7ddb61e0e8094c7cd.tar.gz go-tangerine-b52fde7cf7ce50725830a9d7ddb61e0e8094c7cd.tar.zst go-tangerine-b52fde7cf7ce50725830a9d7ddb61e0e8094c7cd.zip |
Merge pull request #3546 from fjl/deps-update
vendor: update dependencies
Diffstat (limited to 'vendor/gopkg.in/urfave/cli.v1/.travis.yml')
-rw-r--r-- | vendor/gopkg.in/urfave/cli.v1/.travis.yml | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/vendor/gopkg.in/urfave/cli.v1/.travis.yml b/vendor/gopkg.in/urfave/cli.v1/.travis.yml index 273d017b4..94836d750 100644 --- a/vendor/gopkg.in/urfave/cli.v1/.travis.yml +++ b/vendor/gopkg.in/urfave/cli.v1/.travis.yml @@ -7,34 +7,33 @@ cache: - node_modules go: -- 1.2.2 -- 1.3.3 -- 1.4 -- 1.5.4 -- 1.6.2 +- 1.2.x +- 1.3.x +- 1.4.2 +- 1.5.x +- 1.6.x +- 1.7.x - master matrix: allow_failures: - go: master include: - - go: 1.6.2 + - go: 1.6.x + os: osx + - go: 1.7.x os: osx - - go: 1.1.2 - install: go get -v . - before_script: echo skipping gfmxr on $TRAVIS_GO_VERSION - script: - - ./runtests vet - - ./runtests test before_script: -- go get github.com/urfave/gfmxr/... +- go get github.com/urfave/gfmrun/... || true +- go get golang.org/x/tools/... || true - if [ ! -f node_modules/.bin/markdown-toc ] ; then npm install markdown-toc ; fi script: +- ./runtests gen - ./runtests vet - ./runtests test -- ./runtests gfmxr +- ./runtests gfmrun - ./runtests toc |