mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
9e399d940a
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/47482 XCBeautify swallow some errors, especially all the linker errors when some symbol is not defined. The full error is not available in the raw log either. This makes much harder to debug those issues when they happen. We can remove xcbeautify for the time being, while we find a better solution. ## Changelog [Internal] - Remove XCBeautify from ci Reviewed By: dmytrorykun Differential Revision: D65596745 fbshipit-source-id: 0550d4cbeadc5bec8acc61b5edc1320d3445bcaf
23 lines
630 B
YAML
23 lines
630 B
YAML
name: prepare-ios-tests
|
|
description: Prepare iOS Tests
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Run Ruby Tests
|
|
shell: bash
|
|
run: |
|
|
cd packages/react-native/scripts
|
|
sh run_ruby_tests.sh
|
|
- name: Boot iPhone Simulator
|
|
shell: bash
|
|
run: source scripts/.tests.env && xcrun simctl boot "$IOS_DEVICE" || true
|
|
- name: "Brew: Tap wix/brew"
|
|
shell: bash
|
|
run: brew tap wix/brew
|
|
- name: brew install applesimutils watchman
|
|
shell: bash
|
|
run: brew install applesimutils watchman
|
|
- name: Configure Watchman
|
|
shell: bash
|
|
run: echo "{}" > .watchmanconfig
|