Skip to content
This repository was archived by the owner on Jun 29, 2026. It is now read-only.
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/workflows/nightly-fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# SPDX-FileCopyrightText: (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

---

name: Nightly Fuzz CI

on:
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

permissions:
contents: read

jobs:
fuzz:
name: Run Fuzz Tests
runs-on: ubuntu-latest
timeout-minutes: 400
env:
FUZZTIME: 360m

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true

- name: Run fuzz suite
shell: bash
run: |
set -o pipefail
mkdir -p fuzz-logs
make fuzz 2>&1 | tee fuzz-logs/nightly-fuzz-console.log

- name: Upload fuzz logs
if: always()
uses: actions/upload-artifact@v4
with:
name: nightly-fuzz-logs-${{ github.run_id }}-${{ github.run_attempt }}
path: |
fuzz-logs/
pkg/**/testdata/fuzz/
internal/**/testdata/fuzz/
if-no-files-found: warn
retention-days: 30
Loading