Skip to content

Commit

Permalink
CI stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Sep 28, 2023
1 parent e0596e1 commit b15d74a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ skip-tree = [
{ name = "wgpu-info" },
]
skip = [
{ name = "wgpu" }
{ name = "wgpu" },
{ name = "fastrand" }
]
wildcards = "deny"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/regression/issue_4122.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ fn fill_test(ctx: &TestingContext, range: Range<u64>, 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;
Expand Down

0 comments on commit b15d74a

Please sign in to comment.