Skip to content

Commit 7631197

Browse files
authored
Switch GH runners to run on ubuntu-latest (#1364)
`macOS-latest` resulted in emulators failing to run since the `macOS-latest` runner was updated to `mac14-arm64`. Failed action with `macOS-latest`: https://github.com/android/compose-samples/actions/runs/8835086121 Confirming that this change fixes emulator runs: https://github.com/android/compose-samples/actions/runs/8837607669 ...changing emulator arch to [arm64](https://github.com/android/compose-samples/blob/main/.github/workflows/Reply.yaml#L62) is perhaps another way to fix this. Note: I had to use `macos-12` for Crane to fix emulator-related failures (see https://github.com/android/compose-samples/actions/runs/8837918596/job/24270240695)
2 parents f4ad97f + 2b69e3a commit 7631197

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/Crane.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
test:
2727
needs: build
28-
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
28+
runs-on: macos-13
2929
timeout-minutes: 30
3030
strategy:
3131
matrix:

.github/workflows/JetLagged.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
test:
2727
needs: build
28-
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 30
3030
strategy:
3131
matrix:

.github/workflows/JetNews.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
androidTest:
2727
needs: build
28-
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 30
3030
strategy:
3131
matrix:

.github/workflows/Jetchat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
test:
2727
needs: build
28-
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 30
3030
strategy:
3131
matrix:

.github/workflows/Owl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
test:
2727
needs: build
28-
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 30
3030
strategy:
3131
matrix:

.github/workflows/Reply.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
test:
2727
needs: build
28-
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 30
3030
strategy:
3131
matrix:

0 commit comments

Comments
 (0)