2015-04-07 18:01:33 +02:00
|
|
|
language: node_js
|
|
|
|
|
node_js:
|
2018-04-26 17:21:00 +02:00
|
|
|
#- stable # disable for now due to an issue of indirect dep upath with Node 9
|
2017-12-05 18:37:03 +01:00
|
|
|
- 8
|
2016-11-02 15:03:45 +01:00
|
|
|
|
|
|
|
|
# Use containers.
|
|
|
|
|
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
|
|
|
|
sudo: false
|
2018-03-27 09:39:36 -07:00
|
|
|
addons:
|
|
|
|
|
apt:
|
|
|
|
|
packages:
|
2018-10-29 13:29:30 +01:00
|
|
|
- qemu-utils
|
|
|
|
|
- blktap-utils
|
|
|
|
|
- vmdk-stream-converter
|
2017-10-28 13:23:56 +02:00
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
|
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
|
|
|
|
|
|
|
|
cache:
|
|
|
|
|
yarn: true
|
2018-03-27 09:39:36 -07:00
|
|
|
|
|
|
|
|
script:
|
2018-10-30 10:57:26 +00:00
|
|
|
- yarn run travis-tests
|