Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alanorth/hugo-theme-bootstrap4-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Orth <alan.orth@gmail.com>2020-03-30 09:16:38 +0300
committerAlan Orth <alan.orth@gmail.com>2020-03-30 09:16:38 +0300
commitfaa3c3cf5bf96fb6e4c0cb05b6232c3bfde45127 (patch)
treef439bde5f71bd3834710480be1c9cb3d4d445d29
parentbbc5ef18cf7f5e39978c47f41f8571d689a6f63b (diff)
.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/
-rw-r--r--.travis.yml2
1 files changed, 2 insertions, 0 deletions
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