From d0f280b9c54f8e0ae63a58dcedf504674c069c3b Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Tue, 26 Sep 2023 15:53:48 +0400 Subject: [PATCH] chore: addopt winit MSRV policy --- .github/workflows/ci.yml | 11 ++++++++--- README.md | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e61853d03a..631f9f9292 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,9 +47,14 @@ jobs: - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: --no-default-features, features: glx } - { target: aarch64-linux-android, os: ubuntu-latest, cmd: 'apk --' } - { target: x86_64-apple-darwin, os: macos-latest, } - # We don't support ios for now. - # - { target: x86_64-apple-ios, os: macos-latest, } - # - { target: aarch64-apple-ios, os: macos-latest, } + exclude: + # Android is tested on stable-3 + - rust_version: '1.65.0' + platform: { target: aarch64-linux-android, os: ubuntu-latest, cmd: 'apk --' } + include: + - rust_version: '1.69.0' + platform: { target: aarch64-linux-android, os: ubuntu-latest, cmd: 'apk --' } + env: RUST_BACKTRACE: 1 diff --git a/README.md b/README.md index f8d7d41249..02f1e73aa4 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Note that glutin aims at being a low-level brick in your rendering infrastructure. You are encouraged to write another layer of abstraction between glutin and your application. -The minimum Rust version target by glutin is `1.65.0`. +Glutin follows winit's [MSRV policy](https://github.com/rust-windowing/winit/blob/master/README.md#msrv-policy). ## Platform-specific notes