1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-09-30 03:44:17 +02:00
hugo-theme-bootstrap4-blog/.travis.yml
Alan Orth faa3c3cf5b
.travis.yml: Use an LXD container instead of VM
We need to specify OS and Arch in order to use an LXD container in-
stead of a VM. This should theoretically be much faster according
to the Travis docs. Here we are building on arm64 because there is
no amd64 container support right now, but it shouldn't matter beca-
use we are only doing npm build.

See: https://docs.travis-ci.com/user/reference/overview/
2020-03-30 09:16:38 +03:00

12 lines
126 B
YAML

language: node_js
node_js:
- 10
- 12
- 13
script: npm run build
os: linux
arch: arm64
dist: bionic
# vim: ts=2 sw=2 et