Skip to content

Commit bc0fa14

Browse files
committed
Add MSRV to CI
1 parent 9b03219 commit bc0fa14

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.travis.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ matrix:
1717
- env: TARGET=x86_64-unknown-linux-gnu
1818
rust: nightly
1919
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
20-
20+
2121
- env: TARGET=armv7-unknown-linux-gnueabihf
2222
rust: stable
2323
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
@@ -33,6 +33,22 @@ matrix:
3333
rust: stable
3434
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
3535

36+
# MSRV
37+
- env: TARGET=armv7-unknown-linux-gnueabihf
38+
rust: 1.36.0
39+
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
40+
addons:
41+
apt:
42+
packages:
43+
- libc6-armhf-cross
44+
- libc6-dev-armhf-cross
45+
- gcc-arm-linux-gnueabihf
46+
47+
# MSRV
48+
- env: TARGET=x86_64-unknown-linux-gnu
49+
rust: 1.36.0
50+
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
51+
3652

3753
before_install:
3854
- set -e

0 commit comments

Comments
 (0)