Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use concurrency groups to reduce CI load of fuzzing #1356

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/fuzz-bash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ on:

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz:
name: Fuzz
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/fuzz-cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ on:
branches:
- main
schedule:
- cron: "5 2 * * *"
- cron: "0 2 * * *"
workflow_dispatch: ~

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz:
name: Fuzz
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/fuzz-csh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ on:
branches:
- main
schedule:
- cron: "10 2 * * *"
- cron: "0 2 * * *"
workflow_dispatch: ~

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz:
name: Fuzz
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/fuzz-dash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ on:
branches:
- main
schedule:
- cron: "15 2 * * *"
- cron: "0 2 * * *"
workflow_dispatch: ~

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz:
name: Fuzz
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/fuzz-no-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,22 @@ on:
branches:
- main
schedule:
- cron: "25 2 * * *"
- cron: "0 2 * * *"
workflow_dispatch: ~

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz-unix:
name: Fuzz Unix
uses: ericcornelissen/shescape/.github/workflows/reusable-fuzz.yml@main
concurrency:
group: fuzz-no-shell
cancel-in-progress: false
with:
duration: 600 # seconds == 10 minutes
os: ubuntu-22.04
Expand All @@ -34,6 +41,9 @@ jobs:
fuzz-windows:
name: Fuzz Windows
uses: ericcornelissen/shescape/.github/workflows/reusable-fuzz.yml@main
concurrency:
group: fuzz-no-shell
cancel-in-progress: false
with:
duration: 600 # seconds == 10 minutes
os: windows-2022
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/fuzz-powershell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ on:
branches:
- main
schedule:
- cron: "20 2 * * *"
- cron: "0 2 * * *"
workflow_dispatch: ~

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz:
name: Fuzz
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/fuzz-zsh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ on:
branches:
- main
schedule:
- cron: "30 2 * * *"
- cron: "0 2 * * *"
workflow_dispatch: ~

permissions: read-all

concurrency:
group: fuzz
cancel-in-progress: false

jobs:
fuzz:
name: Fuzz
Expand Down