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

72 lines
1.6 KiB
YAML
Raw Normal View History

2017-06-24 14:26:52 +03:00
language: node_js
2019-03-08 00:38:05 +03:00
node_js: 11
2017-06-24 14:26:52 +03:00
2019-03-07 20:04:03 +03:00
stages:
2019-06-28 18:07:58 +03:00
- Build
- name: Docs
if: branch = master
2019-06-28 11:14:32 +03:00
2019-03-07 20:04:03 +03:00
jobs:
include:
2019-06-28 18:07:58 +03:00
- stage: 'Build'
os: linux
before_install:
- set -e
- rm app/node_modules/.yarn-integrity || true
- yarn
script:
- set -e
- scripts/build-native.js
- yarn run build:typings
- yarn run build
- scripts/prepackage-plugins.js
- travis_wait scripts/build-linux.js
- stage: 'Build'
os: osx
before_install:
- set -e
- rm app/node_modules/.yarn-integrity || true
- yarn
script:
- set -e
- scripts/build-native.js
- yarn run build:typings
- yarn run build
- scripts/prepackage-plugins.js
- travis_wait scripts/build-macos.js
2019-03-07 20:04:03 +03:00
- stage: 'Docs'
os: linux
2019-06-09 20:34:41 +03:00
if: branch = master
2019-03-07 20:04:03 +03:00
script:
2019-06-07 08:59:13 +03:00
- set -e
2019-03-07 20:04:03 +03:00
- openssl aes-256-cbc -K $encrypted_4e2fb4889ef8_key -iv $encrypted_4e2fb4889ef8_iv -in .travis.ssh.key.enc -out .travis.ssh.key -d
2019-03-07 23:31:49 +03:00
- eval "$(ssh-agent -s)"
2019-03-08 01:17:44 +03:00
- chmod 600 .travis.ssh.key
2019-03-07 20:04:03 +03:00
- ssh-add .travis.ssh.key
- yarn
- yarn run docs
2019-03-07 21:27:38 +03:00
- rsync -e "ssh -o StrictHostKeyChecking=no" -arv docs/api/ root@ajenti.org:/srv/terminus-docs/
2017-06-24 14:26:52 +03:00
2019-03-08 00:38:05 +03:00
dist: xenial
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
2019-05-26 21:54:10 +03:00
- libsecret-1-dev
2017-12-14 16:55:31 +03:00
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'
2019-06-07 21:00:32 +03:00
2019-06-28 18:07:58 +03:00
2019-06-07 21:00:32 +03:00
cache:
directories:
2019-06-14 13:22:36 +03:00
- 'terminus-*/node_modules'
2019-06-07 21:04:03 +03:00
- $HOME/.cache/yarn
- $HOME/.cache/electron
- $HOME/.cache/electron-builder