Skip to content

Commit c99b2a4

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Connect the prebuild-ios workflow with other workflows (facebook#49731)
Summary: Pull Request resolved: facebook#49731 This change runs the prebuilds in all the workflows we need: - test-all - nightlies - create-release ## Changelog: [Internal] - connect the rebuild-ios workflow with the other workflows Reviewed By: cortinico Differential Revision: D70331579 fbshipit-source-id: 6505a32672d43d06e29e68d37bd0ceff21bd7386
1 parent 2ff0220 commit c99b2a4

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ jobs:
100100
react-native-version: ${{ needs.prepare_hermes_workspace.outputs.react-native-version }}
101101
flavor: ${{ matrix.flavor }}
102102

103+
prebuild_apple_dependencies:
104+
uses: ./.github/workflows/prebuild-ios.yml
105+
103106
build_hermesc_linux:
104107
runs-on: ubuntu-latest
105108
needs: prepare_hermes_workspace

.github/workflows/prebuild-ios.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Prebuild iOS
22

33
on:
44
workflow_call: # this directive allow us to call this workflow from other workflows
5-
pull_request: # remove this before landing
65

76
jobs:
87
prepare_workspace:

.github/workflows/publish-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ jobs:
9696
hermes-version: ${{ needs.prepare_hermes_workspace.outputs.hermes-version }}
9797
react-native-version: ${{ needs.prepare_hermes_workspace.outputs.react-native-version }}
9898
flavor: ${{ matrix.flavor }}
99+
prebuild_apple_dependencies:
100+
uses: ./.github/workflows/prebuild-ios.yml
99101

100102
build_hermesc_linux:
101103
runs-on: ubuntu-latest

.github/workflows/test-all.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ jobs:
116116
react-native-version: ${{ needs.prepare_hermes_workspace.outputs.react-native-version }}
117117
flavor: ${{ matrix.flavor }}
118118

119+
prebuild_apple_dependencies:
120+
uses: ./.github/workflows/prebuild-ios.yml
121+
119122
test_ios_rntester_ruby_3_2_0:
120123
runs-on: macos-13
121124
needs:

0 commit comments

Comments
 (0)