2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
|
|
|
|
2021-06-07 20:57:14 +08:00
|
|
|
name: Fuzzer
|
2020-03-25 01:19:35 +08:00
|
|
|
|
2020-04-08 17:54:31 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-05-18 06:03:16 +08:00
|
|
|
- master
|
|
|
|
- '*/ci'
|
2023-03-11 08:58:21 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
|
|
|
- '.azure-pipelines.yml'
|
|
|
|
- '.circleci/**'
|
|
|
|
- '.cirrus.yml'
|
|
|
|
- 'appveyor.yml'
|
|
|
|
- 'packages/**'
|
|
|
|
- 'plan9/**'
|
|
|
|
- 'projects/**'
|
|
|
|
- 'winbuild/**'
|
2020-04-08 17:54:31 +08:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2022-05-18 06:03:16 +08:00
|
|
|
- master
|
2023-03-11 08:58:21 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
|
|
|
- '.azure-pipelines.yml'
|
|
|
|
- '.cirrus.yml'
|
|
|
|
- 'appveyor.yml'
|
|
|
|
- 'packages/**'
|
|
|
|
- 'plan9/**'
|
|
|
|
- 'projects/**'
|
|
|
|
- 'winbuild/**'
|
2020-03-25 01:19:35 +08:00
|
|
|
|
2022-09-18 05:45:32 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-11-16 22:55:33 +08:00
|
|
|
permissions: {}
|
|
|
|
|
2020-02-21 08:17:50 +08:00
|
|
|
jobs:
|
2022-12-02 22:02:13 +08:00
|
|
|
Fuzzing:
|
|
|
|
uses: curl/curl-fuzzer/.github/workflows/ci.yml@master
|