Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend ignore #726

Merged
merged 3 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
5 changes: 2 additions & 3 deletions tests/minicrater/full/full.html.context.expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
{
"color_idx": 0,
"log": "stable/local/faulty-deps",
"name_idx": 7
"name_idx": 1
},
{
"color_idx": 0,
Expand Down 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
Loading