This commit is contained in:
Eugene Pankov 2019-07-24 12:16:29 +02:00
parent 0ca00b81d5
commit f1213fb83e
2 changed files with 13 additions and 14 deletions

View File

@ -11,20 +11,7 @@ jobs:
include:
- stage: 'Build'
os: osx
before_install:
- set -e
- yarn
- rm app/node_modules/.yarn-integrity || true
- 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
script: ./build/travis.sh
- stage: 'Docs'
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