-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (40 loc) · 1.02 KB
/
fuzz-no-shell.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: No shell
on:
pull_request:
paths:
- .github/workflows/fuzz-no-shell.yml
- .github/workflows/reusable-fuzz.yml
- src/unix/no-shell.js
- src/win/no-shell.js
- test/fuzz/**
push:
paths:
- .github/workflows/fuzz-no-shell.yml
- .github/workflows/reusable-fuzz.yml
- src/unix/no-shell.js
- src/win/no-shell.js
- test/fuzz/**
branches:
- main
- main-v1
schedule:
- cron: "25 2 * * *"
workflow_dispatch: ~
permissions: read-all
jobs:
fuzz-unix:
name: Fuzz Unix
uses: ericcornelissen/shescape/.github/workflows/reusable-fuzz.yml@main
with:
duration: 600 # seconds == 10 minutes
os: ubuntu-22.04
shell: "false"
targets: '["exec-file", "fork", "spawn"]'
fuzz-windows:
name: Fuzz Windows
uses: ericcornelissen/shescape/.github/workflows/reusable-fuzz.yml@main
with:
duration: 600 # seconds == 10 minutes
os: windows-2022
shell: "false"
targets: '["exec-file", "fork", "spawn"]'