1
0
picturingjordan.com/.travis.yml
Alan Orth 6df4c04813
.travis.yml: Try to run in an LXD container
According to the build environment documentation we need to specify
an OS of Linux in order to get a container instead of a VM. This
should be faster in theory...

See: https://docs.travis-ci.com/user/reference/overview/
2020-03-29 16:31:22 +03:00

19 lines
431 B
YAML

language: go
go:
- "1.14.1"
install:
- mkdir -p $HOME/src
- git clone https://github.com/gohugoio/hugo.git $HOME/src/hugo
- cd $HOME/src/hugo
- go install
before_script:
- cd $TRAVIS_HOME/gopath/src/github.com/alanorth/picturingjordan.com
- git clone https://github.com/alanorth/hugo-theme-bootstrap4-blog.git themes/hugo-theme-bootstrap4-blog
script:
- hugo
os: linux
arch: amd64
dist: bionic
# vim: ts=2 sw=2 et