mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-13 21:52:37 +00:00
Increase the minimum rust supported channel to 1.33
This commit is contained in:
parent
7ead8aec4e
commit
820edf97d4
2 changed files with 5 additions and 5 deletions
|
@ -41,16 +41,16 @@ matrix:
|
|||
|
||||
# Minimum Rust supported channel.
|
||||
- os: linux
|
||||
rust: 1.31.0
|
||||
rust: 1.33.0
|
||||
env: TARGET=x86_64-unknown-linux-gnu
|
||||
- os: linux
|
||||
rust: 1.31.0
|
||||
rust: 1.33.0
|
||||
env: TARGET=i686-unknown-linux-gnu
|
||||
- os: osx
|
||||
rust: 1.31.0
|
||||
rust: 1.33.0
|
||||
env: TARGET=x86_64-apple-darwin
|
||||
- os: linux
|
||||
rust: 1.31.0
|
||||
rust: 1.33.0
|
||||
env:
|
||||
- TARGET=arm-unknown-linux-gnueabihf
|
||||
- CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc-4.8
|
||||
|
|
2
build.rs
2
build.rs
|
@ -18,7 +18,7 @@ use std::process::exit;
|
|||
include!("src/app.rs");
|
||||
|
||||
fn main() {
|
||||
match version_check::is_min_version("1.31.0") {
|
||||
match version_check::is_min_version("1.33.0") {
|
||||
Some(true) => {}
|
||||
// rustc version too small or can't figure it out
|
||||
_ => {
|
||||
|
|
Loading…
Reference in a new issue