Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions .github/workflows/e2e-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,15 +179,15 @@ jobs:
strategy:
fail-fast: false # keeps matrix running if one fails
matrix:
rn-version: ['0.71.11', '0.82.1']
rn-version: ['0.71.11', '0.83.0-rc.4']
rn-architecture: ['legacy', 'new']
platform: ['android', 'ios']
build-type: ['production']
ios-use-frameworks: ['no', 'static', 'dynamic']
engine: ['hermes', 'jsc']
include:
- platform: ios
rn-version: '0.82.1'
rn-version: '0.83.0-rc.4'
xcode-version: '16.4'
runs-on: macos-15
- platform: ios
Expand All @@ -198,7 +198,7 @@ jobs:
runs-on: ubuntu-latest
exclude:
# exclude JSC for new RN versions (keeping the matrix manageable)
- rn-version: '0.82.1'
- rn-version: '0.83.0-rc.4'
engine: 'jsc'
# exclude all rn versions lower than 0.80.0 for new architecture
- rn-version: '0.71.11'
Expand All @@ -218,11 +218,6 @@ jobs:
# exclude new rn architecture and dynamic frameworks
- rn-architecture: 'new'
ios-use-frameworks: 'dynamic'
# exclude RN 0.82.1 with dynamic frameworks due to React Native circular dependency bug
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This exclusion seems to not be needed in 0.83.0-rc

# https://github.com/facebook/react-native/issues/54267
- rn-version: '0.82.1'
platform: 'ios'
ios-use-frameworks: 'dynamic'

steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -315,15 +310,15 @@ jobs:
strategy:
fail-fast: false # keeps matrix running if one fails
matrix:
rn-version: ['0.82.1']
rn-version: ['0.83.0-rc.4']
rn-architecture: ['legacy', 'new']
platform: ['android', 'ios']
build-type: ['production']
ios-use-frameworks: ['no'] # test only no frameworks
engine: ['hermes']
include:
- platform: ios
rn-version: '0.82.1'
rn-version: '0.83.0-rc.4'
runs-on: macos-15
- platform: android
runs-on: ubuntu-latest
Expand Down
Loading