mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 12:16:34 +03:00
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
language: node_js
|
|
node_js: 10
|
|
|
|
stages:
|
|
- Build
|
|
- name: Docs
|
|
if: branch = master
|
|
|
|
jobs:
|
|
include:
|
|
- stage: 'Build'
|
|
os: linux
|
|
before_install:
|
|
- yarn
|
|
- rm app/node_modules/.yarn-integrity || true
|
|
- scripts/install-deps.js
|
|
script:
|
|
- scripts/build-native.js
|
|
- yarn run build
|
|
- scripts/prepackage-plugins.js
|
|
- scripts/build-linux.js
|
|
|
|
- stage: 'Build'
|
|
os: osx
|
|
before_install:
|
|
- rm app/node_modules/.yarn-integrity || true
|
|
- yarn
|
|
script:
|
|
- scripts/build-native.js
|
|
- yarn run build
|
|
- scripts/prepackage-plugins.js
|
|
- scripts/build-macos.js
|
|
|
|
- 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 -e "ssh -o StrictHostKeyChecking=no" -arv docs/api/ root@ajenti.org:/srv/terminus-docs/
|
|
|
|
dist: trusty
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- rpm
|
|
- yarn
|
|
sources:
|
|
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
|
|
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'
|