This repository was archived by the owner on Dec 2, 2020. It is now read-only.
File tree 2 files changed +31
-0
lines changed 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,32 @@ matrix:
50
50
rust : nightly
51
51
if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
52
52
53
+ # MSRV
54
+ - env : TARGET=x86_64-unknown-linux-gnu
55
+ rust : 1.33.0
56
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
57
+
58
+ - env : TARGET=thumbv6m-none-eabi
59
+ rust : 1.33.0
60
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
61
+
62
+ - env : TARGET=thumbv7m-none-eabi
63
+ rust : 1.33.0
64
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
65
+
66
+ - env : TARGET=thumbv7em-none-eabi
67
+ rust : 1.33.0
68
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
69
+
70
+ - env : TARGET=thumbv7em-none-eabihf
71
+ rust : 1.33.0
72
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
73
+
74
+ - env : TARGET=thumbv8m.main-none-eabi
75
+ rust : 1.33.0
76
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
77
+
78
+
53
79
before_install : set -e
54
80
55
81
install :
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ This project is developed and maintained by the [Cortex-M team][team].
9
9
10
10
## [ Documentation] ( https://docs.rs/cortex-m-semihosting )
11
11
12
+ # Minimum Supported Rust Version (MSRV)
13
+
14
+ This crate is guaranteed to compile on stable Rust 1.33.0 and up. It * might*
15
+ compile with older versions but that may change in any new patch release.
16
+
12
17
## License
13
18
14
19
Licensed under either of
You can’t perform that action at this time.
0 commit comments