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 + fdf65ee commit e525887
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 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

0 comments on commit e525887

Please sign in to comment.