Skip to content

Commit ca38f3a

Browse files
committed
Use available Ubuntu runners in workflows
1 parent ddf68b6 commit ca38f3a

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
needs: [prebuild_apple_dependencies]
3636

3737
build_android:
38-
runs-on: 8-core-ubuntu
38+
runs-on: ubuntu-latest
3939
if: github.repository == 'react/react-native'
4040
needs: [set_release_type]
4141
container:
@@ -57,7 +57,7 @@ jobs:
5757
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
5858

5959
build_npm_package:
60-
runs-on: 8-core-ubuntu
60+
runs-on: ubuntu-latest
6161
needs:
6262
[
6363
set_release_type,

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
needs: [prebuild_apple_dependencies]
5353

5454
build_npm_package:
55-
runs-on: 8-core-ubuntu
55+
runs-on: ubuntu-latest
5656
needs:
5757
[
5858
set_release_type,

.github/workflows/test-all.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
working-directory: /tmp/RNTestProject
202202

203203
test_e2e_android_templateapp:
204-
runs-on: 4-core-ubuntu
204+
runs-on: ubuntu-latest
205205
needs: build_npm_package
206206
strategy:
207207
fail-fast: false
@@ -269,7 +269,7 @@ jobs:
269269
working-directory: /tmp/RNTestProject
270270

271271
run_fantom_tests:
272-
runs-on: 8-core-ubuntu
272+
runs-on: ubuntu-latest
273273
needs: [set_release_type]
274274
container:
275275
image: reactnativecommunity/react-native-android:v20.0
@@ -307,7 +307,7 @@ jobs:
307307
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
308308

309309
test_e2e_android_rntester:
310-
runs-on: 4-core-ubuntu
310+
runs-on: ubuntu-latest
311311
needs: [build_android]
312312
strategy:
313313
fail-fast: false
@@ -337,7 +337,7 @@ jobs:
337337
flavor: ${{ matrix.flavor }}
338338

339339
build_npm_package:
340-
runs-on: 8-core-ubuntu
340+
runs-on: ubuntu-latest
341341
needs:
342342
[
343343
set_release_type,
@@ -360,7 +360,7 @@ jobs:
360360
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
361361

362362
test_android_helloworld:
363-
runs-on: 4-core-ubuntu
363+
runs-on: ubuntu-latest
364364
needs: build_npm_package
365365
container:
366366
image: reactnativecommunity/react-native-android:v20.0

0 commit comments

Comments
 (0)