mirror of
https://github.com/prometheus/prometheus.git
synced 2026-03-22 02:20:53 -04:00
Some checks failed
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Waiting to run
CI / Build Prometheus for all architectures (push) Waiting to run
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Push README to Docker Hub / Push README to Docker Hub (push) Has been cancelled
Push README to Docker Hub / Push README to quay.io (push) Has been cancelled
* Bump promu to latest release. * Update actions/checkout. * Update Go to 1.26.x for golangci-lint in synced repos. * Improve golangci-lint push filter for synced repos. Signed-off-by: SuperQ <superq@gmail.com>
47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
name: fuzzing
|
|
on:
|
|
workflow_call:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
fuzzing:
|
|
name: Run Go Fuzz Tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
fuzz_test: [FuzzParseMetricText, FuzzParseOpenMetric, FuzzParseMetricSelector, FuzzParseExpr]
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
- name: Install Go
|
|
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
|
|
with:
|
|
go-version: 1.25.x
|
|
- name: Run Fuzzing
|
|
run: go test -fuzz=${{ matrix.fuzz_test }}$ -fuzztime=5m ./util/fuzzing
|
|
continue-on-error: true
|
|
id: fuzz
|
|
- name: Upload Crash Artifacts
|
|
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
if: failure()
|
|
with:
|
|
name: fuzz-artifacts-${{ matrix.fuzz_test }}
|
|
path: util/fuzzing/testdata/fuzz/${{ matrix.fuzz_test }}
|
|
fuzzing_status:
|
|
# This status check aggregates the individual matrix jobs of the fuzzing
|
|
# step into a final status. Fails if a single matrix job fails, succeeds if
|
|
# all matrix jobs succeed.
|
|
name: Fuzzing
|
|
runs-on: ubuntu-latest
|
|
needs: [fuzzing]
|
|
if: always()
|
|
steps:
|
|
- name: Successful fuzzing
|
|
if: ${{ !(contains(needs.*.result, 'failure')) && !(contains(needs.*.result, 'cancelled')) }}
|
|
run: exit 0
|
|
- name: Failing or cancelled fuzzing
|
|
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
|
|
run: exit 1
|