From 973ae7e92235d599d642932cfba575f86b5c4275 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 2 Jan 2024 16:05:39 -0600 Subject: [PATCH] Disable the fuzzer CI job (#9369) The job is failing to compile. We should resolve separately but I am disabling for now since it breaks pull requests. See https://github.com/astral-sh/ruff/issues/9368 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a2ca03e6ce1a..f1c23b3e2c67c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -168,7 +168,7 @@ jobs: cargo-fuzz: runs-on: ubuntu-latest needs: determine_changes - if: ${{ needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main' }} + if: false # ${{ needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main' }} name: "cargo fuzz" steps: - uses: actions/checkout@v4