Skip to content

Commit

Permalink
CI: Use MacOS 13 runner for tests
Browse files Browse the repository at this point in the history
macOS v14 / m1 GitHub Actions runners not allowing Android emulators
  • Loading branch information
justin-stephenson committed Jun 13, 2024
1 parent a9bd712 commit a5ebfbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
run: ./gradlew build -x lint

tests:
runs-on: macos-latest
# macOS v14 / m1 GitHub Actions runners not allowing Android emulators
# https://github.com/ReactiveCircus/android-emulator-runner/issues/397
runs-on: macos-13
steps:
- name: Checkout project sources
uses: actions/checkout@v3
Expand Down

2 comments on commit a5ebfbd

@PeterDaveHello
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@justin-stephenson maybe ubuntu runner is more suitable for Android build?

@justin-stephenson
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@justin-stephenson maybe ubuntu runner is more suitable for Android build?

Sure we can try it.

Please sign in to comment.