Skip to content

Commit a0f3c93

Browse files
committed
Fixes for new cargo test repos
* Update to ripgrep HEAD because the previous rev would still change the lock file when `cargo build` was issued. * Remove `bins` as it depends on OpenSSL on Windows, which won't work on our bots * Update rev of tokei to get a rev that doesn't change the lockfile
1 parent 9958021 commit a0f3c93

File tree

1 file changed

+38
-42
lines changed

1 file changed

+38
-42
lines changed

src/tools/cargotest/main.rs

+38-42
Original file line numberDiff line numberDiff line change
@@ -21,48 +21,44 @@ struct Test {
2121
lock: Option<&'static str>,
2222
}
2323

24-
const TEST_REPOS: &'static [Test] = &[Test {
25-
name: "bins",
26-
repo: "https://github.com/jkcclemens/bins",
27-
sha: "378da8f7d78df6e3ff0b234063de50619b16648e",
28-
lock: None,
29-
},
30-
Test {
31-
name: "cargo",
32-
repo: "https://github.com/rust-lang/cargo",
33-
sha: "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76",
34-
lock: None,
35-
},
36-
Test {
37-
name: "iron",
38-
repo: "https://github.com/iron/iron",
39-
sha: "16c858ec2901e2992fe5e529780f59fa8ed12903",
40-
lock: Some(include_str!("lockfiles/iron-Cargo.lock")),
41-
},
42-
Test {
43-
name: "ripgrep",
44-
repo: "https://github.com/BurntSushi/ripgrep",
45-
sha: "5487dffefaa34e5fc04321335aa716f415082977",
46-
lock: None,
47-
},
48-
Test {
49-
name: "tokei",
50-
repo: "https://github.com/Aaronepower/tokei",
51-
sha: "9faa8d4210ba19ad76d736e46e4963cfcef329d6",
52-
lock: None,
53-
},
54-
Test {
55-
name: "treeify",
56-
repo: "https://github.com/dzamlo/treeify",
57-
sha: "999001b223152441198f117a68fb81f57bc086dd",
58-
lock: None,
59-
},
60-
Test {
61-
name: "xsv",
62-
repo: "https://github.com/BurntSushi/xsv",
63-
sha: "5ec4fff4a3f507eda887049469897f02c6fae036",
64-
lock: None,
65-
}];
24+
const TEST_REPOS: &'static [Test] = &[
25+
Test {
26+
name: "cargo",
27+
repo: "https://github.com/rust-lang/cargo",
28+
sha: "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76",
29+
lock: None,
30+
},
31+
Test {
32+
name: "iron",
33+
repo: "https://github.com/iron/iron",
34+
sha: "16c858ec2901e2992fe5e529780f59fa8ed12903",
35+
lock: Some(include_str!("lockfiles/iron-Cargo.lock")),
36+
},
37+
Test {
38+
name: "ripgrep",
39+
repo: "https://github.com/BurntSushi/ripgrep",
40+
sha: "b65bb37b14655e1a89c7cd19c8b011ef3e312791",
41+
lock: None,
42+
},
43+
Test {
44+
name: "tokei",
45+
repo: "https://github.com/Aaronepower/tokei",
46+
sha: "5e11c4852fe4aa086b0e4fe5885822fbe57ba928",
47+
lock: None,
48+
},
49+
Test {
50+
name: "treeify",
51+
repo: "https://github.com/dzamlo/treeify",
52+
sha: "999001b223152441198f117a68fb81f57bc086dd",
53+
lock: None,
54+
},
55+
Test {
56+
name: "xsv",
57+
repo: "https://github.com/BurntSushi/xsv",
58+
sha: "5ec4fff4a3f507eda887049469897f02c6fae036",
59+
lock: None,
60+
},
61+
];
6662

6763
fn main() {
6864
// One of the projects being tested here is Cargo, and when being tested

0 commit comments

Comments
 (0)