File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -1023,6 +1023,12 @@ impl Step for Rls {
1023
1023
let rls = builder
1024
1024
. ensure ( tool:: Rls { compiler, target, extra_features : Vec :: new ( ) } )
1025
1025
. or_else ( || {
1026
+ if builder. config . rustc_parallel {
1027
+ // FIXME: Disable RLS on parallel builds, cannot build due
1028
+ // to upstream trouble. See
1029
+ // https://github.com/racer-rust/racer/pull/1177.
1030
+ return None ;
1031
+ }
1026
1032
missing_tool ( "RLS" , builder. build . config . missing_tools ) ;
1027
1033
None
1028
1034
} ) ?;
Original file line number Diff line number Diff line change 1
- nightly
1
+ beta
Original file line number Diff line number Diff line change @@ -32,16 +32,15 @@ impl IgnorePathSet {
32
32
33
33
#[ cfg( test) ]
34
34
mod test {
35
- use std:: path:: { Path , PathBuf } ;
36
-
37
- use crate :: config:: { Config , FileName } ;
38
- use crate :: ignore_path:: IgnorePathSet ;
39
-
40
35
use rustfmt_config_proc_macro:: nightly_only_test;
41
36
42
37
#[ nightly_only_test]
43
38
#[ test]
44
39
fn test_ignore_path_set ( ) {
40
+ use std:: path:: { Path , PathBuf } ;
41
+
42
+ use crate :: config:: { Config , FileName } ;
43
+ use crate :: ignore_path:: IgnorePathSet ;
45
44
let config =
46
45
Config :: from_toml ( r#"ignore = ["foo.rs", "bar_dir/*"]"# , Path :: new ( "" ) ) . unwrap ( ) ;
47
46
let ignore_path_set = IgnorePathSet :: from_ignore_list ( & config. ignore ( ) ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments