mirror of
https://github.com/prometheus/prometheus.git
synced 2026-07-16 04:23:06 -04:00
Some checks are pending
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 / 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
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
17 lines
521 B
YAML
17 lines
521 B
YAML
name: CIFuzz
|
|
on:
|
|
workflow_call:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
Fuzzing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip fuzzing on LTS branch
|
|
# Fuzzing CI is disabled on this LTS branch because the oss-fuzz
|
|
# integration was updated on main to use Go native fuzzing, which is
|
|
# incompatible with this branch. Since oss-fuzz has no versioned
|
|
# releases, there is no older stable version to pin to. Fuzzing
|
|
# continues to run on the main branch.
|
|
run: true
|