From c733872ea3b5adb5e29b1595f3adfac94737bc15 Mon Sep 17 00:00:00 2001 From: Ivan Valdes Date: Fri, 14 Feb 2025 14:13:23 -0800 Subject: [PATCH] github/workflows: remove fuzzing workflow. This job is already running in the Prow infrastructure. Signed-off-by: Ivan Valdes --- .github/workflows/fuzzing.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/fuzzing.yaml diff --git a/.github/workflows/fuzzing.yaml b/.github/workflows/fuzzing.yaml deleted file mode 100644 index 52ae502e5..000000000 --- a/.github/workflows/fuzzing.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: Fuzzing v3rpc -on: [push, pull_request] -permissions: read-all -jobs: - fuzzing: - runs-on: ubuntu-latest - strategy: - fail-fast: false - env: - TARGET_PATH: ./server/etcdserver/api/v3rpc - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - id: goversion - run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT" - - uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 - with: - go-version: ${{ steps.goversion.outputs.goversion }} - - run: | - set -euo pipefail - - GOARCH=amd64 CPU=4 make fuzz - - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 - if: failure() - with: - path: "${{env.TARGET_PATH}}/testdata/fuzz/**/*"