Skip to content

Commit

Permalink
fix(.github/android): use API level 26
Browse files Browse the repository at this point in the history
`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 }
```
  • Loading branch information
mxinden authored and djc committed Aug 23, 2024
1 parent 5e5cc93 commit bb02a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb02a12

Please sign in to comment.