Skip to content

Commit 097dbc2

Browse files
cortinicometa-codesync[bot]
authored andcommitted
Unbreak android CI by moving to ubuntu-latest (#57216)
Summary: build_android is currently timing out - this should unblock it for now till we find a different solution. ## Changelog: [INTERNAL] - Pull Request resolved: #57216 Test Plan: CI Reviewed By: huntie Differential Revision: D108744449 Pulled By: cortinico fbshipit-source-id: 4b14252889c3d9ebcb4ad2135839233e103355d7
1 parent 9984cf8 commit 097dbc2

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/e2e-android-rntester.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
test:
19-
runs-on: 4-core-ubuntu
19+
runs-on: ubuntu-latest
2020
outputs:
2121
status: ${{ steps.report-status.outputs.status }}
2222
strategy:

.github/workflows/e2e-android-templateapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
test:
19-
runs-on: 4-core-ubuntu
19+
runs-on: ubuntu-latest
2020
outputs:
2121
status: ${{ steps.report-status.outputs.status }}
2222
strategy:

.github/workflows/fantom-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
test:
19-
runs-on: 8-core-ubuntu
19+
runs-on: ubuntu-latest
2020
outputs:
2121
status: ${{ steps.report-status.outputs.status }}
2222
container:

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
needs: [prebuild_apple_dependencies]
3939

4040
build_android:
41-
runs-on: 8-core-ubuntu
41+
runs-on: ubuntu-latest
4242
if: github.repository == 'react/react-native'
4343
needs: [set_release_type]
4444
container:

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242
jobs:
4343
publish-react-native:
4444
if: inputs.mode == 'react-native'
45-
runs-on: 8-core-ubuntu
45+
runs-on: ubuntu-latest
4646
environment: npm-publish
4747
# `id-token: write` is required so the npm CLI can mint the OIDC
4848
# token that npm Trusted Publishing exchanges for a publish token.

.github/workflows/test-all.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
secrets: inherit
221221

222222
build_fantom_runner:
223-
runs-on: 8-core-ubuntu
223+
runs-on: ubuntu-latest
224224
needs: [set_release_type, check_code_changes, lint]
225225
if: needs.check_code_changes.outputs.any_code_change == 'true'
226226
container:
@@ -263,7 +263,7 @@ jobs:
263263
secrets: inherit
264264

265265
build_android:
266-
runs-on: 8-core-ubuntu
266+
runs-on: ubuntu-latest
267267
needs: [set_release_type, check_code_changes]
268268
if: |
269269
needs.check_code_changes.outputs.any_code_change == 'true' &&
@@ -309,7 +309,7 @@ jobs:
309309
secrets: inherit
310310

311311
build_npm_package:
312-
runs-on: 8-core-ubuntu
312+
runs-on: ubuntu-latest
313313
needs:
314314
[
315315
set_release_type,
@@ -342,7 +342,7 @@ jobs:
342342
skip-apple-prebuilts: ${{ needs.check_code_changes.outputs.should_test_ios == 'false' }}
343343

344344
test_android_helloworld:
345-
runs-on: 4-core-ubuntu
345+
runs-on: ubuntu-latest
346346
needs: [build_npm_package, build_android]
347347
if: ${{ always() && needs.build_android.result == 'success' && needs.build_npm_package.result == 'success' }}
348348
container:

0 commit comments

Comments
 (0)