mirror of
https://github.com/curl/curl.git
synced 2026-04-14 13:01:42 +08:00
Would need 64-bit support.
Ref: https://github.com/curl/curl/pull/20233#issuecomment-3732556015
Follow-up to 0159100f4f #20233
Closes #20243
46 lines
925 B
YAML
46 lines
925 B
YAML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
name: 'Fuzzer'
|
|
|
|
'on':
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*/ci'
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- '**/CMakeLists.txt'
|
|
- '.circleci/**'
|
|
- 'appveyor.*'
|
|
- 'CMake/**'
|
|
- 'Dockerfile'
|
|
- 'packages/**'
|
|
- 'projects/**'
|
|
- 'tests/data/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- '**/CMakeLists.txt'
|
|
- '.circleci/**'
|
|
- 'appveyor.*'
|
|
- 'CMake/**'
|
|
- 'Dockerfile'
|
|
- 'packages/**'
|
|
- 'projects/**'
|
|
- 'tests/data/**'
|
|
|
|
concurrency:
|
|
# Hard-coded workflow name to avoid colliding with curl-fuzzer's group
|
|
group: curl-fuzz-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
Fuzzing:
|
|
uses: curl/curl-fuzzer/.github/workflows/ci.yml@master
|