From bb02a12a8435a7732a1d762783eeacbb7e50418e Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 23 Aug 2024 12:44:26 +0200 Subject: [PATCH] fix(.github/android): use API level 26 `ecn_*` unit tests are failing with any Android API version < v26 with: ``` 2024-08-22T14:41:30.636494Z WARN quinn_udp: sendmsg error: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }, Transmit: { destination: 127.0.0.1:50196, src_ip: None, enc: Some(Ect0), len: 5, segment_size: None } ``` --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 393b3e38b..4b4e4b3d3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -102,10 +102,10 @@ jobs: emulator-arch: x86_64 # Note that x86_64 image is only available for API 21+. See # https://github.com/ReactiveCircus/android-emulator-runner?tab=readme-ov-file#configurations. - api-level: 21 + api-level: 26 - target: i686-linux-android emulator-arch: x86 - api-level: 19 + api-level: 26 steps: - name: Checkout code