mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
24 lines
418 B
YAML
24 lines
418 B
YAML
language: go
|
|
sudo: required
|
|
go:
|
|
- 1.6.4
|
|
- 1.7.4
|
|
- tip
|
|
os:
|
|
- linux
|
|
- osx
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
fast_finish: true
|
|
install:
|
|
- make govendor
|
|
script:
|
|
- make check
|
|
- go build -race
|
|
- ./hugo -s docs/
|
|
- ./hugo --renderToMemory -s docs/
|
|
before_install:
|
|
# gem install must be run with sudo on OSX
|
|
- sudo gem install asciidoctor | gem install asciidoctor
|
|
- sudo pip install docutils
|