From 99ccf0c6079214ba1779bac21d1213995b30c14d Mon Sep 17 00:00:00 2001 From: Adrian Taylor Date: Mon, 9 Dec 2024 13:12:28 +0000 Subject: [PATCH] Skip a troublesome crate This crates' errors are during its build process, not its tests. Discussed in https://github.com/rust-lang/rust/issues/134028. --- config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 0e1963e8..74fefad0 100644 --- a/config.toml +++ b/config.toml @@ -208,7 +208,7 @@ rustc_get_version = { skip = true } # does not build on beta "senrust/toy_compiler2" = { skip-tests = true } # UB when tests run concurrently "Yogaflre/leetcode" = { skip-tests = true } # UB "UndeadRat22/kzg10-rust" = { skip-tests = true } # Wraps a non-thread-safe C++ library -"JakeDawkins/graphql-client-302-repro" = { skip-tests = true } # Stack overflow in a proc macro +"JakeDawkins/graphql-client-302-repro" = { skip = true } # Stack overflow in a proc macro "cdstanford/hydroflow-hackathon" = { skip-tests = true } # UB in a proc macro "hydro-project/compute-pi" = { skip-tests = true } # UB in a proc macro "KatsukiFujimoto/git-rs" = { skip-tests = true } # flaky test (HashSet iteration)