gobyexample/.travis.yml
Eli Bendersky 4f6bedc1b7 Add VERBOSE option to tools/build and generate.go
VERBOSE will be set by TRAVIS (but can also be set by user to diagnose slow
builds). Using an env var so that it automatically propagates to all the
sub-scripts and tools without having to pass it through tools/build explicitly.
2019-09-08 22:51:39 +02:00

19 lines
259 B
YAML

language: go
go:
- 1.12
before_install:
# We need Python to run pygmentize for generating HTML.
- sudo apt-get update
- sudo apt-get install python
install:
- go get -u github.com/russross/blackfriday
script:
- tools/build
env:
- VERBOSE=1