mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
---
|
|
general:
|
|
branches:
|
|
ignore:
|
|
- gh-pages
|
|
|
|
machine:
|
|
timezone: America/Los_Angeles
|
|
node:
|
|
version: 6
|
|
ruby:
|
|
version: 2.2.3
|
|
environment:
|
|
TRAVIS_REPO_SLUG: facebook/react
|
|
|
|
dependencies:
|
|
pre:
|
|
# This is equivalent to $TRAVIS_COMMIT_RANGE
|
|
# Need to figure out how to bail early if this is a "docs only" build
|
|
- echo $CIRCLE_COMPARE_URL | cut -d/ -f7
|
|
# install yarn
|
|
- sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
|
|
- echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y -qq yarn
|
|
override:
|
|
- bundle install --gemfile=docs/Gemfile --deployment --path=vendor/bundle --jobs=3 --retry=3
|
|
- yarn install
|
|
- scripts/circleci/set_up_github_keys.sh
|
|
post:
|
|
# - npm ls --depth=0
|
|
cache_directories:
|
|
- docs/vendor/bundle
|
|
- .grunt # Show size comparisons between builds
|
|
- ~/react-gh-pages # docs checkout
|
|
- ~/.yarn-cache
|
|
|
|
test:
|
|
override:
|
|
- ./node_modules/.bin/gulp lint
|
|
- ./node_modules/.bin/gulp flow
|
|
- ./scripts/circleci/test_coverage.sh
|
|
- ./scripts/circleci/test_fiber.sh
|
|
- ./scripts/circleci/test_html_generation.sh
|
|
- ./scripts/circleci/track_stats.sh
|
|
- ./node_modules/.bin/grunt build
|
|
- ./node_modules/.bin/gulp react:extract-errors
|
|
|
|
deployment:
|
|
staging:
|
|
branch: /.*/
|
|
commands:
|
|
- ./scripts/circleci/upload_build.sh
|
|
- ./scripts/circleci/build_gh_pages.sh
|