From faa3c3cf5bf96fb6e4c0cb05b6232c3bfde45127 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 30 Mar 2020 09:16:38 +0300 Subject: [PATCH] .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/ --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index a875b65..089427d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ node_js: - 12 - 13 script: npm run build +os: linux +arch: arm64 dist: bionic # vim: ts=2 sw=2 et