Skip to content

[No QA] Dont use large runners in other orgs #60305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 15, 2025
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/remote-build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
build:
runs-on: ubuntu-latest-xl
runs-on: ${{ github.repository_owner == 'Expensify' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
Expand All @@ -33,7 +34,7 @@ jobs:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}

- name: RNEF Remote Build - Android
uses: callstackincubator/android@a49920aadab9f41951944ea52bb7983fa6b20b03
uses: callstackincubator/android@333f590005be752c28f07e36fa7151be3b2e18da
env:
PROJECT_ROOT_PATH: ${{ matrix.project_root }}
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/remote-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
build:
runs-on: macos-15-xlarge
runs-on: ${{ github.repository_owner == 'Expensify' && 'macos-15-xlarge' || 'macos-15' }}
strategy:
fail-fast: false
matrix:
Expand All @@ -37,7 +38,7 @@ jobs:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}

- name: RNEF Remote Build - iOS
uses: callstackincubator/ios@4c2dcc0d6b9c35407cf294e17386b65258a3b6af
uses: callstackincubator/ios@f8aeffabe13be32e9aa69b86726de67bff5a694e
env:
PROJECT_ROOT_PATH: ${{ matrix.project_root }}
with:
Expand Down
Loading