
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.
19 lines
259 B
YAML
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
|