1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-18 15:41:54 +03:00
* .

* script
This commit is contained in:
Eugene 2019-07-24 12:25:06 +02:00 committed by GitHub
parent 947c751bc7
commit 2d5e4477b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 14 deletions

View File

@ -11,20 +11,7 @@ jobs:
include: include:
- stage: 'Build' - stage: 'Build'
os: osx os: osx
before_install: script: ./build/travis.sh
- set -e
- yarn
- rm app/node_modules/.yarn-integrity
- cd app
- yarn
- cd ..
script:
- set -e
- scripts/build-native.js
- yarn run build:typings
- yarn run build
- scripts/prepackage-plugins.js
- travis_wait scripts/build-macos.js
- stage: 'Docs' - stage: 'Docs'
os: linux os: linux

12
build/travis.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -e
yarn
rm app/node_modules/.yarn-integrity
cd app
yarn
cd ..
scripts/build-native.js
yarn run build:typings
yarn run build
scripts/prepackage-plugins.js
travis_wait scripts/build-macos.js