mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
Summary:
The iOS End-to-End tests started failing with the updates made to the iOS template's Podfile in 261197d857
. Undoing these gets our CI iOS e2e test step back to green.
[iOS] [Removed] - Revert auto-linking related changes to the iOS template Podfile
Pull Request resolved: https://github.com/facebook/react-native/pull/24788
Differential Revision: D15317895
Pulled By: cpojer
fbshipit-source-id: a1f3b84b39c6d341740f742d83fd05a1ab841184
This commit is contained in:
parent
0245fd713e
commit
da7d3dfc7d
@ -499,12 +499,22 @@ jobs:
|
||||
|
||||
- run:
|
||||
name: Run JavaScript End-to-End Tests
|
||||
command: node ./scripts/run-ci-e2e-tests.js --js --retries 3
|
||||
command: |
|
||||
# free up port 8081 for the packager before running tests
|
||||
set +eo pipefail
|
||||
lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill
|
||||
set -eo pipefail
|
||||
node ./scripts/run-ci-e2e-tests.js --js --retries 3
|
||||
when: always
|
||||
|
||||
- run:
|
||||
name: Run iOS End-to-End Tests
|
||||
command: node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
|
||||
command: |
|
||||
# free up port 8081 for the packager before running tests
|
||||
set +eo pipefail
|
||||
lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill
|
||||
set -eo pipefail
|
||||
node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
|
||||
when: always
|
||||
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
platform :ios, '9.0'
|
||||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
||||
|
||||
target 'HelloWorld' do
|
||||
# Pods for HelloWorld
|
||||
@ -33,7 +32,6 @@ target 'HelloWorld' do
|
||||
# Pods for testing
|
||||
end
|
||||
|
||||
use_native_modules!
|
||||
end
|
||||
|
||||
target 'HelloWorld-tvOS' do
|
||||
|
Loading…
Reference in New Issue
Block a user