Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,12 @@ runs:
working-directory: ${{ inputs.app-name }}
shell: bash
run: yarn add "react-native-worklets@https://github.com/software-mansion/react-native-reanimated.git#workspace=react-native-worklets&commit=${{ github.sha }}"
- name: Select Xcode (iOS)
- name: Setup Ruby (iOS)
if: ${{ inputs.platform == 'iOS' }}
shell: bash
run: sudo xcode-select --switch /Applications/Xcode_16.4.app
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install Pods (iOS)
if: ${{ inputs.platform == 'iOS' }}
working-directory: ${{ inputs.app-name }}/ios
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/example-ios-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ on:
jobs:
example-ios-build-check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: macos-15
runs-on: macos-26
env:
WORKING_DIRECTORY: apps/fabric-example
REANIMATED_DIR: packages/react-native-reanimated
Expand All @@ -57,9 +57,6 @@ jobs:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_16.4.app

- name: Install monorepo node dependencies
run: yarn install --immutable
- name: Toggle Bundle Mode
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/example-macos-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
jobs:
example-macos-build-check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: macos-15
runs-on: macos-26
env:
WORKING_DIRECTORY: apps/macos-example
REANIMATED_DIR: packages/react-native-reanimated
Expand All @@ -52,9 +52,6 @@ jobs:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_16.4.app

# TODO: Add caching for node_modules and artifacts that will work with monorepo setup.
- name: Install monorepo node dependencies
run: yarn install --immutable
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/example-tvos-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
jobs:
example-tvos-build-check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: macos-15
runs-on: macos-26
env:
WORKING_DIRECTORY: apps/tvos-example
REANIMATED_DIR: packages/react-native-reanimated
Expand All @@ -52,9 +52,6 @@ jobs:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_16.4.app

- name: Install monorepo node dependencies
run: yarn install --immutable
- name: Build Reanimated package
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/expo-devclient-build-check-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
expo-devclient-build-check-nightly:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ${{ matrix.platform == 'iOS' && 'macos-15' || 'ubuntu-latest' }}
runs-on: ${{ matrix.platform == 'iOS' && 'macos-26' || 'ubuntu-latest' }}
strategy:
matrix:
platform: ['iOS', 'Android']
Expand Down Expand Up @@ -59,9 +59,6 @@ jobs:
- name: Install Worklets
working-directory: ${{ env.APP_NAME }}
run: npm install react-native-worklets@nightly
- name: Select Xcode (iOS)
if: ${{ matrix.platform == 'iOS' }}
run: sudo xcode-select --switch /Applications/Xcode_16.4.app
- name: Expo prebuild
working-directory: ${{ env.APP_NAME }}
run: npx expo prebuild
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
react-native-nightly-reanimated-build-check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ${{ matrix.platform == 'iOS' && 'macos-15' || 'ubuntu-latest'}}
runs-on: ${{ matrix.platform == 'iOS' && 'macos-26' || 'ubuntu-latest'}}
strategy:
matrix:
platform: ['iOS', 'Android']
Expand Down Expand Up @@ -56,9 +56,11 @@ jobs:
- name: Install Worklets
working-directory: ${{ env.APP_NAME }}
run: yarn add "react-native-worklets@https://github.com/software-mansion/react-native-reanimated.git#workspace=react-native-worklets&commit=${{ github.sha }}"
- name: Select Xcode (iOS)
- uses: ruby/setup-ruby@v1
if: ${{ matrix.platform == 'iOS' }}
run: sudo xcode-select --switch /Applications/Xcode_16.4.app
with:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install Fabric Pods (iOS)
if: ${{ matrix.platform == 'iOS' }}
working-directory: ${{ env.APP_NAME }}/ios
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

reanimated-compatibility-check-nightly:
if: ${{github.repository == 'software-mansion/react-native-reanimated' && (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'Check compatibility'))}}
runs-on: ${{matrix.platform == 'iOS' && 'macos-15' || 'ubuntu-latest'}}
runs-on: ${{matrix.platform == 'iOS' && 'macos-26' || 'ubuntu-latest'}}
needs: read-compatibility-json
strategy:
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
use-frameworks-reanimated-build-check-nightly:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: macos-15
runs-on: macos-26
concurrency:
group: use-${{matrix.type}}-frameworks-reanimated-build-check-nightly-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -51,8 +51,10 @@ jobs:
- name: Install Worklets
working-directory: ${{ env.APP_NAME }}
run: yarn add "react-native-worklets@https://github.com/software-mansion/react-native-reanimated.git#workspace=react-native-worklets&commit=${{ github.sha }}"
- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_16.4.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install ${{matrix.type}} Pods
working-directory: ${{env.APP_NAME}}/ios
run: export USE_FRAMEWORKS=${{matrix.type}} && bundle install && bundle exec pod update
Expand Down
Loading