tabby/.travis.yml

37 lines
601 B
YAML
Raw Normal View History

2017-06-24 16:23:52 +00:00
matrix:
include:
- os: linux
2017-06-24 17:01:56 +00:00
env: BUILD_FOR=linux
2017-06-24 16:23:52 +00:00
- os: osx
2017-06-24 17:01:56 +00:00
env: BUILD_FOR=macos
2017-06-24 16:23:52 +00:00
2017-06-24 11:26:52 +00:00
language: node_js
2018-08-26 17:29:40 +00:00
node_js: 8
2017-06-24 11:26:52 +00:00
cache:
directories:
- node_modules
2017-06-24 11:27:26 +00:00
- app/node_modules
2017-06-24 11:26:52 +00:00
before_install:
2017-12-14 13:55:31 +00:00
- yarn install
2017-06-24 11:26:52 +00:00
- scripts/install-deps.js
script:
- scripts/build-native.js
2017-12-14 13:55:31 +00:00
- yarn run build
2017-06-24 11:26:52 +00:00
- scripts/prepackage-plugins.js
2017-06-24 16:23:52 +00:00
- scripts/build-$BUILD_FOR.js
2017-06-24 11:26:52 +00:00
2017-06-24 16:52:19 +00:00
dist: trusty
2017-06-24 11:26:52 +00:00
sudo: false
2017-06-24 12:27:56 +00:00
addons:
apt:
packages:
- rpm
2017-12-14 13:55:31 +00:00
- yarn
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'