.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/
This commit is contained in:
Alan Orth 2020-03-30 09:16:38 +03:00
parent bbc5ef18cf
commit faa3c3cf5b
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,8 @@ node_js:
- 12
- 13
script: npm run build
os: linux
arch: arm64
dist: bionic
# vim: ts=2 sw=2 et