1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 01:18:39 +03:00
tabby/.travis.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

2017-06-24 14:26:52 +03:00
language: node_js
2018-12-30 19:26:01 +03:00
node_js: 10
2017-06-24 14:26:52 +03:00
2019-03-07 20:04:03 +03:00
stages:
- Build
- name: Docs
if: branch = master
jobs:
include:
- stage: 'Build'
2019-03-07 20:15:52 +03:00
os: linux
before_install:
- rm app/node_modules/.yarn-integrity || true
- yarn
script:
- scripts/build-native.js
- yarn run build
- scripts/prepackage-plugins.js
- scripts/build-linux.js
- stage: 'Build'
os: osx
2019-03-07 20:04:03 +03:00
before_install:
- rm app/node_modules/.yarn-integrity || true
- yarn
script:
- scripts/build-native.js
- yarn run build
- scripts/prepackage-plugins.js
2019-03-07 20:15:52 +03:00
- scripts/build-macos.js
2017-06-24 14:26:52 +03:00
2019-03-07 20:04:03 +03:00
- stage: 'Docs'
os: linux
script:
- openssl aes-256-cbc -K $encrypted_4e2fb4889ef8_key -iv $encrypted_4e2fb4889ef8_iv -in .travis.ssh.key.enc -out .travis.ssh.key -d
- ssh-add .travis.ssh.key
- yarn
- yarn run docs
- rsync -r docs/api/ root@ajenti.org:/srv/terminus-docs/
2017-06-24 14:26:52 +03:00
2017-06-24 19:52:19 +03:00
dist: trusty
2017-06-24 14:26:52 +03:00
sudo: false
2017-06-24 15:27:56 +03:00
addons:
apt:
packages:
- rpm
2017-12-14 16:55:31 +03:00
- yarn
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'