mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5f0d508390
Summary: Following up the announcement made at AppJS, this change stops testing the legacy architecture in our CI ## Changelog: [Internal] - Stop testing the legacy architecture in CI Pull Request resolved: https://github.com/facebook/react-native/pull/51738 Test Plan: waiting for GHA Reviewed By: cortinico Differential Revision: D75791359 Pulled By: cipolleschi fbshipit-source-id: cb3159338835f49589fa6f495cfb9f47750825fe
33 lines
1.3 KiB
YAML
33 lines
1.3 KiB
YAML
name: setup-xcode-build-cache
|
|
description: Add caching to iOS jobs to speed up builds
|
|
inputs:
|
|
hermes-version:
|
|
description: The version of hermes
|
|
required: true
|
|
flavor:
|
|
description: The flavor that is going to be built
|
|
default: Debug
|
|
use-frameworks:
|
|
description: Whether we are bulding with DynamicFrameworks or StaticLibraries
|
|
default: StaticLibraries
|
|
ruby-version:
|
|
description: The ruby version we are going to use
|
|
default: 2.6.10
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: See commands.yml with_xcodebuild_cache
|
|
shell: bash
|
|
run: echo "See commands.yml with_xcodebuild_cache"
|
|
- name: Cache podfile lock
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: packages/rn-tester/Podfile.lock
|
|
key: v13-podfilelock-${{ github.job }}-NewArch-${{ inputs.flavor }}-${{ inputs.use-frameworks }}-${{ inputs.ruby-version }}-${{ hashfiles('packages/rn-tester/Podfile') }}-${{ inputs.hermes-version }}
|
|
- name: Cache cocoapods
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: packages/rn-tester/Pods
|
|
key: v15-cocoapods-${{ github.job }}-NewArch-${{ inputs.flavor }}-${{ inputs.use-frameworks }}-${{ inputs.ruby-version }}-${{ hashfiles('packages/rn-tester/Podfile.lock') }}-${{ hashfiles('packages/rn-tester/Podfile') }}-${{ inputs.hermes-version}}
|