File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ use tee::TeeReader;
36
36
use tempdir:: TempDir ;
37
37
use xz2:: read:: XzDecoder ;
38
38
39
+ mod git;
40
+ mod least_satisfying;
41
+
42
+ use crate :: least_satisfying:: { least_satisfying, Satisfies } ;
43
+
39
44
/// The first commit which build artifacts are made available through the CI for
40
45
/// bisection.
41
46
///
@@ -47,10 +52,6 @@ const EPOCH_COMMIT: &str = "927c55d86b0be44337f37cf5b0a76fb8ba86e06c";
47
52
const NIGHTLY_SERVER : & str = "https://static.rust-lang.org/dist" ;
48
53
const CI_SERVER : & str = "https://s3-us-west-1.amazonaws.com/rust-lang-ci2" ;
49
54
50
- mod git;
51
- mod least_satisfying;
52
- use least_satisfying:: { least_satisfying, Satisfies } ;
53
-
54
55
fn get_commits ( start : & str , end : & str ) -> Result < Vec < git:: Commit > , Error > {
55
56
eprintln ! ( "fetching commits from {} to {}" , start, end) ;
56
57
let commits = git:: get_commits_between ( start, end) ?;
You can’t perform that action at this time.
0 commit comments