From b15d74a49f7313c05767ea0146ecb38e58031131 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Thu, 28 Sep 2023 02:48:13 -0400 Subject: [PATCH] CI stuff --- .deny.toml | 3 ++- .github/workflows/ci.yml | 2 +- tests/tests/regression/issue_4122.rs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.deny.toml b/.deny.toml index f7c233c5d4..2d0c13d919 100644 --- a/.deny.toml +++ b/.deny.toml @@ -6,7 +6,8 @@ skip-tree = [ { name = "wgpu-info" }, ] skip = [ - { name = "wgpu" } + { name = "wgpu" }, + { name = "fastrand" } ] wildcards = "deny" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 625d071cda..e8f6400903 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -328,7 +328,7 @@ jobs: - name: run rustfmt run: | cargo fmt -- --check - cargo fmt --manifest-path xtask/ -- --check + cargo fmt --manifest-path xtask/Cargo.toml -- --check check-msrv-cts_runner: name: Clippy cts_runner diff --git a/tests/tests/regression/issue_4122.rs b/tests/tests/regression/issue_4122.rs index d43590e6c7..b5945c5813 100644 --- a/tests/tests/regression/issue_4122.rs +++ b/tests/tests/regression/issue_4122.rs @@ -88,7 +88,7 @@ fn fill_test(ctx: &TestingContext, range: Range, size: u64) -> bool { /// /// This test will fail on nvidia if the bug is not properly worked around. #[gpu_test] -static QUEUE_SUBMITTED_CALLBACK_ORDERING: GpuTestConfiguration = GpuTestConfiguration::new() +static CLEAR_BUFFER_RANGE_RESPECTED: GpuTestConfiguration = GpuTestConfiguration::new() .run_sync(|ctx| { // This hits most of the cases in nvidia's clear buffer bug let mut succeeded = true;