1
0
picturingjordan.com/.travis.yml
Alan Orth d5bbfd9214
.travis.yml: Update for Go 1.11
Golang now supports modules and I think Hugo's build system changed
to support this. Trying to port changes from the Hugo configuration
here:

https://github.com/gohugoio/hugo/blob/master/.travis.yml
2018-11-08 09:29:39 +02:00

15 lines
340 B
YAML

language: go
go:
- "1.11"
install:
- mkdir -p $HOME/src
- git clone https://github.com/gohugoio/hugo.git $HOME/src/hugo
- cd $HOME/src/hugo
- go install
before_script: git clone https://github.com/alanorth/hugo-theme-bootstrap4-blog.git themes/hugo-theme-bootstrap4-blog
script: hugo
sudo: false
dist: trusty
# vim: ts=2 sw=2 et