Bug 1564638 - Update Linux to Rust beta 1.37. r=froydnj,glandium

Differential Revision: https://phabricator.services.mozilla.com/D37775

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Eric Rahm 2019-07-25 04:02:19 +00:00
parent 8666bb3c7d
commit 1804cbf6c4
2 changed files with 14 additions and 2 deletions

View File

@ -73,7 +73,7 @@ linux64-rust-1.35:
linux64-rust-1.36:
treeherder:
symbol: TL(rust)
symbol: TL(rust-1.36)
run:
arguments: [
'--channel', '1.36.0',
@ -82,6 +82,18 @@ linux64-rust-1.36:
'--target', 'i686-unknown-linux-gnu',
'--target', 'aarch64-unknown-linux-gnu',
]
linux64-rust-1.37:
treeherder:
symbol: TL(rust)
run:
arguments: [
'--channel', 'beta-2019-07-23',
'--host', 'x86_64-unknown-linux-gnu',
'--target', 'x86_64-unknown-linux-gnu',
'--target', 'i686-unknown-linux-gnu',
'--target', 'aarch64-unknown-linux-gnu',
]
toolchain-alias: linux64-rust
linux64-rust-nightly:

View File

@ -9,7 +9,7 @@ use rustc_version::{version, Version};
fn main() {
let ver = version().unwrap();
let mut bootstrap = false;
let max_oom_hook_version = Version::parse("1.37.0-alpha").unwrap();
let max_oom_hook_version = Version::parse("1.38.0-alpha").unwrap();
if ver >= Version::parse("1.28.0-alpha").unwrap() && ver < max_oom_hook_version {
println!("cargo:rustc-cfg=feature=\"oom_with_hook\"");