Skip to content

Commit d3027b3

Browse files
committed
Update yml to target proper API level, use newer JDK and beef up emulator
1 parent d186229 commit d3027b3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/android.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
test_Android:
7-
runs-on: macOS-latest
7+
runs-on: macos-13
88
steps:
99

1010
- name: Checkout
@@ -15,13 +15,17 @@ jobs:
1515
- name: Setup JDK
1616
uses: actions/setup-java@v1
1717
with:
18-
java-version: 11
18+
java-version: 17
1919

2020
- name: Sdl Android Tests
2121
# For more info, please check out: https://github.com/marketplace/actions/android-emulator-runner
2222
uses: reactivecircus/android-emulator-runner@v2
2323
with:
24-
api-level: 29
24+
api-level: 34
25+
cores: 3
26+
ram-size: 6000M
27+
heap-size: 4000M
28+
arch: x86_64
2529
script: ./android/gradlew -p ./android :sdl_android:connectedCheck
2630

2731
- name: Hello Sdl Android Tests
@@ -33,7 +37,7 @@ jobs:
3337
yml: ./codecov.yml
3438

3539
test_Java:
36-
runs-on: macOS-latest
40+
runs-on: macos-13
3741
steps:
3842

3943
- name: Checkout

0 commit comments

Comments
 (0)