1
0
picturingjordan.com/.travis.yml
Alan Orth 2e6f59a708
.travis.yml: Remove sudo
Apparently this is deprecated anyways:

    Deprecated: The key sudo has no effect anymore.

See: https://config.travis-ci.com/ref/sudo
2020-03-29 16:12:32 +03:00

17 lines
409 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
dist: bionic
# vim: ts=2 sw=2 et