This repository was archived by the owner on Nov 11, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,26 @@ matrix:
5656 - gcc-arm-none-eabi
5757 if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
5858
59+ # MSRV
60+ - env : TARGET=x86_64-unknown-linux-gnu
61+ rust : 1.32.0
62+
63+ - env : TARGET=thumbv6m-none-eabi
64+ rust : 1.32.0
65+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
66+
67+ - env : TARGET=thumbv7m-none-eabi
68+ rust : 1.32.0
69+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
70+
71+ - env : TARGET=thumbv7em-none-eabi
72+ rust : 1.32.0
73+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
74+
75+ - env : TARGET=thumbv7em-none-eabihf
76+ rust : 1.32.0
77+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
78+
5979before_install : set -e
6080
6181install :
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ This project is developed and maintained by the [Cortex-M team][team].
66
77## [ Documentation] ( https://docs.rs/panic-semihosting )
88
9+ ## Minimum Supported Rust Version (MSRV)
10+
11+ This crate is guaranteed to compile on stable Rust 1.32.0 and up. It * might*
12+ compile with older versions but that may change in any new patch release.
13+
914## License
1015
1116Licensed under either of
You can’t perform that action at this time.
0 commit comments