mirror of
https://github.com/lsd-rs/lsd
synced 2025-01-05 16:38:50 +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.
|
# Minimum Rust supported channel.
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: 1.31.0
|
rust: 1.33.0
|
||||||
env: TARGET=x86_64-unknown-linux-gnu
|
env: TARGET=x86_64-unknown-linux-gnu
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: 1.31.0
|
rust: 1.33.0
|
||||||
env: TARGET=i686-unknown-linux-gnu
|
env: TARGET=i686-unknown-linux-gnu
|
||||||
- os: osx
|
- os: osx
|
||||||
rust: 1.31.0
|
rust: 1.33.0
|
||||||
env: TARGET=x86_64-apple-darwin
|
env: TARGET=x86_64-apple-darwin
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: 1.31.0
|
rust: 1.33.0
|
||||||
env:
|
env:
|
||||||
- TARGET=arm-unknown-linux-gnueabihf
|
- TARGET=arm-unknown-linux-gnueabihf
|
||||||
- CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc-4.8
|
- 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");
|
include!("src/app.rs");
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
match version_check::is_min_version("1.31.0") {
|
match version_check::is_min_version("1.33.0") {
|
||||||
Some(true) => {}
|
Some(true) => {}
|
||||||
// rustc version too small or can't figure it out
|
// rustc version too small or can't figure it out
|
||||||
_ => {
|
_ => {
|
||||||
|
|
Loading…
Reference in a new issue