Summary: These haven't built in ages now and causing all sorts of down-stream issues with Greenkeeper and release jobs. We need to find a more sustainable way of running them. Pull Request resolved: https://github.com/facebook/flipper/pull/1019 Test Plan: eyes Reviewed By: priteshrnandgaonkar Differential Revision: D21066022 Pulled By: passy fbshipit-source-id: 0480b7f17ed04af490113cf5dfbbfec130ec9eb3
43 lines
748 B
YAML
43 lines
748 B
YAML
os: osx
|
|
osx_image: xcode10.2
|
|
|
|
matrix:
|
|
include:
|
|
- language: node_js
|
|
os: linux
|
|
node_js:
|
|
- "12"
|
|
|
|
install:
|
|
- cd website
|
|
- yarn
|
|
- cd ..
|
|
|
|
script:
|
|
- cd website
|
|
- yarn build
|
|
- cd ..
|
|
|
|
deploy:
|
|
- provider: pages
|
|
skip-cleanup: true
|
|
github-token: $GITHUB_TOKEN
|
|
fqdn: fbflipper.com
|
|
local-dir: website/build/flipper
|
|
keep-history: true
|
|
on:
|
|
branch: master
|
|
- language: node_js
|
|
os: linux
|
|
node_js:
|
|
- "12"
|
|
|
|
install:
|
|
- cd desktop
|
|
- yarn
|
|
|
|
script:
|
|
- yarn lint
|
|
- yarn test
|
|
- yarn build --linux --version=$TRAVIS_BUILD_NUMBER
|