Skip to content

Commit

Permalink
remove old architecture pipepline for RNTester
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski committed Jan 11, 2024
1 parent 9525074 commit 273c36d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
13 changes: 3 additions & 10 deletions .circleci/configurations/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -503,11 +503,6 @@ jobs:
description: Which JavaScript engine to use. Must be one of "Hermes", "JSC".
type: enum
enum: ["Hermes", "JSC"]
architecture:
default: "OldArch"
description: Which React Native architecture to use. Must be one of "OldArch", "NewArch".
type: enum
enum: ["NewArch", "OldArch"]
use_frameworks:
default: "StaticLibraries"
description: The dependency building and linking strategy to use. Must be one of "StaticLibraries", "DynamicFrameworks"
Expand Down Expand Up @@ -550,11 +545,8 @@ jobs:
- with_xcodebuild_cache:
steps:
- run:
name: Install CocoaPods dependencies - Architecture << parameters.architecture >>
name: Install CocoaPods dependencies
command: |
if [[ << parameters.architecture >> == "NewArch" ]]; then
export RCT_NEW_ARCH_ENABLED=1
fi
if [[ << parameters.jsengine >> == "JSC" ]]; then
export USE_HERMES=0
Expand All @@ -564,8 +556,9 @@ jobs:
export USE_FRAMEWORKS=dynamic
fi
export RCT_NEW_ARCH_ENABLED=1
cd packages/rn-tester
bundle install
bundle exec pod install
- when:
Expand Down
5 changes: 0 additions & 5 deletions .circleci/configurations/test_workflows/testAll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,9 @@
- build_npm_package
name: "Test Template with Ruby 3.2.0"
ruby_version: "3.2.0"
architecture: "NewArch"
flavor: "Debug"
executor: reactnativeios-lts
- test_ios_template:
architecture: "OldArch"
requires:
- build_npm_package
matrix:
Expand All @@ -80,10 +78,8 @@
- build_hermes_macos
name: "Test RNTester with Ruby 3.2.0"
ruby_version: "3.2.0"
architecture: "NewArch"
executor: reactnativeios-lts
- test_ios_rntester:
architecture: "NewArch"
requires:
- build_hermes_macos
matrix:
Expand All @@ -108,5 +104,4 @@
- build_hermes_macos
matrix:
parameters:
architecture: ["OldArch", "NewArch"]
jsengine: ["Hermes", "JSC"]
3 changes: 0 additions & 3 deletions .circleci/configurations/test_workflows/testIOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,8 @@
- build_hermes_macos
name: "Test RNTester with Ruby 3.2.0"
ruby_version: "3.2.0"
architecture: "NewArch"
executor: reactnativeios-lts
- test_ios_rntester:
architecture: "NewArch"
requires:
- build_hermes_macos
matrix:
Expand All @@ -99,5 +97,4 @@
- build_hermes_macos
matrix:
parameters:
architecture: ["NewArch", "OldArch"]
jsengine: ["Hermes", "JSC"]

0 comments on commit 273c36d

Please sign in to comment.