Skip to content

Commit 04dc943

Browse files
committed
chore(build): update Java version to 17 in GitHub Actions
1 parent e20e1be commit 04dc943

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/build.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ env:
88

99
jobs:
1010
android:
11-
runs-on: macos-latest
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: true
1515
matrix:
1616
api-level:
17-
- 29
17+
- 33
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/setup-java@v3
2626
with:
2727
distribution: 'zulu'
28-
java-version: 11
28+
java-version: 17
2929

3030
- name: Gradle cache
3131
uses: gradle/gradle-build-action@v2
@@ -34,15 +34,17 @@ jobs:
3434
if: steps.avd-cache.outputs.cache-hit != 'true'
3535
uses: reactivecircus/android-emulator-runner@v2
3636
with:
37+
arch: x86_64
3738
api-level: ${{ matrix.api-level }}
3839
force-avd-creation: false
39-
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
40+
emulator-options: -no-window -noaudio -no-boot-anim -camera-back none -feature -Vulkan
4041
disable-animations: false
4142
script: echo "Generated AVD snapshot for caching."
4243

4344
- name: Run Tests
4445
uses: reactivecircus/android-emulator-runner@v2
4546
with:
47+
arch: x86_64
4648
api-level: ${{ matrix.api-level }}
4749
script: ./gradlew connectedCheck -x :bugsnag-benchmarks:connectedCheck
4850
env:

bugsnag-android-core/src/androidTest/java/com/bugsnag/android/MemoryTrimTest.java

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import static org.junit.Assert.assertEquals;
44
import static org.junit.Assert.assertTrue;
5+
import static org.mockito.ArgumentMatchers.any;
6+
import static org.mockito.Mockito.doNothing;
57
import static org.mockito.Mockito.times;
68
import static org.mockito.Mockito.verify;
79
import static org.mockito.Mockito.when;
@@ -34,6 +36,7 @@ public class MemoryTrimTest {
3436
@Test
3537
public void onLowMemoryEvent() {
3638
when(context.getApplicationContext()).thenReturn(context);
39+
doNothing().when(context).registerComponentCallbacks(any());
3740
Client client = new Client(context, BugsnagTestUtils.generateConfiguration());
3841

3942
// block until observer is registered

0 commit comments

Comments
 (0)