Skip to content

Commit

Permalink
Auto merge of #726 - Mark-Simulacrum:extend-ignore, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Extend ignore
  • Loading branch information
bors committed Mar 31, 2024
2 parents de2da9d + 1efe7e6 commit 95e29b1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ context_bind = { skip-tests = true } # UB
unbounded-spsc = { skip-tests = true } # UB
vtable_gen = { skip-tests = true } # UB
crt0stack = { skip-tests = true } # UB
fsdr-blocks = { skip = true } # does not build on beta
leptos_core = { skip = true } # does not build on beta
rustc_get_version = { skip = true } # does not build on beta

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

[local-crates]
6 changes: 6 additions & 0 deletions src/server/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,16 @@ pub struct Issue {
pub number: i32,
pub url: String,
pub html_url: String,
// used in some targets
#[allow(unused)]
pub labels: Vec<Label>,
pub pull_request: Option<PullRequest>,
}

#[derive(Deserialize)]
pub struct PullRequest {
// used in some targets
#[allow(unused)]
pub html_url: String,
}

Expand Down Expand Up @@ -231,6 +235,8 @@ pub struct Team {

#[derive(Deserialize)]
pub struct Commit {
// used in some targets
#[allow(unused)]
pub sha: String,
pub parents: Vec<CommitParent>,
}
Expand Down
3 changes: 1 addition & 2 deletions tests/minicrater/full/full.html.context.expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,6 @@
"build ICE",
"test failed (unknown)",
"broken Cargo.toml",
"deps yanked",
"build faulty deps"
"deps yanked"
]
}
2 changes: 1 addition & 1 deletion tests/minicrater/full/results.expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
"runs": [
{
"log": "stable/local/faulty-deps",
"res": "build-fail:depends-on(reg/lazy_static/0.1.0, gh/rust-lang/crater/c3f462bdab37a93c24b2b172b90564749e892cbc)"
"res": "build-fail:unknown"
},
{
"log": "beta/local/faulty-deps",
Expand Down

0 comments on commit 95e29b1

Please sign in to comment.