Skip to content

Commit f2ebb4c

Browse files
committed
Auto merge of #726 - Mark-Simulacrum:extend-ignore, r=Mark-Simulacrum
Extend ignore
2 parents de2da9d + 3262f9b commit f2ebb4c

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

config.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ context_bind = { skip-tests = true } # UB
153153
unbounded-spsc = { skip-tests = true } # UB
154154
vtable_gen = { skip-tests = true } # UB
155155
crt0stack = { skip-tests = true } # UB
156+
fsdr-blocks = { skip = true } # does not build on beta
157+
leptos_core = { skip = true } # does not build on beta
158+
rustc_get_version = { skip = true } # does not build on beta
156159

157160
[github-repos]
158161
# "org_name/repo_name" = { option = true }
@@ -214,5 +217,9 @@ crt0stack = { skip-tests = true } # UB
214217
"wojciechkepka/pkger" = { skip-tests = true } # flaky test (concurrency)
215218
"xffxff/muzero-rs" = { skip-tests = true } # flaky test (rng)
216219
"maxjeffos/rs_dynamic_args" = { skip-tests = true } # flaky test (concurrency)
220+
"AntiHero/leptos_fun" = { skip = true } # broken cfg for beta
221+
"samcarey/drop_block_test" = { skip = true } # broken cfg for beta
222+
"c0repwn3r/mangrove" = { skip = true } # broken beta rustc version parsing
223+
"zbzalex/rustc_get_version" = { skip = true } # broken beta rustc version parsing
217224

218225
[local-crates]

src/server/github.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,16 @@ pub struct Issue {
189189
pub number: i32,
190190
pub url: String,
191191
pub html_url: String,
192+
// used in some targets
193+
#[allow(unused)]
192194
pub labels: Vec<Label>,
193195
pub pull_request: Option<PullRequest>,
194196
}
195197

196198
#[derive(Deserialize)]
197199
pub struct PullRequest {
200+
// used in some targets
201+
#[allow(unused)]
198202
pub html_url: String,
199203
}
200204

@@ -231,6 +235,8 @@ pub struct Team {
231235

232236
#[derive(Deserialize)]
233237
pub struct Commit {
238+
// used in some targets
239+
#[allow(unused)]
234240
pub sha: String,
235241
pub parents: Vec<CommitParent>,
236242
}

tests/minicrater/full/full.html.context.expected.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
{
254254
"color_idx": 0,
255255
"log": "stable/local/faulty-deps",
256-
"name_idx": 7
256+
"name_idx": 1
257257
},
258258
{
259259
"color_idx": 0,
@@ -473,7 +473,6 @@
473473
"build ICE",
474474
"test failed (unknown)",
475475
"broken Cargo.toml",
476-
"deps yanked",
477-
"build faulty deps"
476+
"deps yanked"
478477
]
479478
}

tests/minicrater/full/results.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
"runs": [
172172
{
173173
"log": "stable/local/faulty-deps",
174-
"res": "build-fail:depends-on(reg/lazy_static/0.1.0, gh/rust-lang/crater/c3f462bdab37a93c24b2b172b90564749e892cbc)"
174+
"res": "build-fail:unknown"
175175
},
176176
{
177177
"log": "beta/local/faulty-deps",

0 commit comments

Comments
 (0)