Skip to content

Commit fbf2805

Browse files
committed
Remove MSRV check
Raspbian testing only provides Rust 1.63, but the time crate has somehow move onto 1.65 (see time-rs/time#535) and I am not willing to fight a policy to support older versions. So, for now, just assume people are going to use rustup, just like we do to build te Raspberry Pi images, and ignore the MSRV requirements.
1 parent 0af9e11 commit fbf2805

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -99,23 +99,3 @@ jobs:
9999
steps:
100100
- uses: actions/checkout@v2
101101
- run: cd std && cargo build --no-default-features
102-
103-
rust-compat:
104-
runs-on: ubuntu-latest
105-
steps:
106-
- uses: actions-rs/toolchain@v1
107-
with:
108-
profile: minimal
109-
# Target a minimum version that ships with common systems
110-
# out there. In particular, Raspbian testing as of
111-
# 2022-12-26.
112-
toolchain: 1.62
113-
default: true
114-
- uses: actions/checkout@v2
115-
- run: sudo apt update
116-
- run: sudo apt install libsdl2-dev libsdl2-ttf-dev
117-
# On old toolchains, we only care about being able to build.
118-
- run: cd cli && cargo build
119-
# And because we do this primarily for Raspbian, make sure the
120-
# relevant features build there too.
121-
- run: cd cli && cargo build --features=rpi,sdl

0 commit comments

Comments
 (0)