We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d8634a commit 8a57fd0Copy full SHA for 8a57fd0
.github/workflows/cpp.yml
@@ -4,6 +4,28 @@ on: [push]
4
5
jobs:
6
7
+ short_fuzzing:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Build fuzzers
11
+ id: build
12
+ uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
13
+ with:
14
+ oss-fuzz-project-name: 'uwebsockets'
15
+ language: c++
16
+ - name: Run fuzzers
17
+ uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
18
19
20
21
+ fuzz-seconds: 600
22
+ - name: Upload crash
23
+ uses: actions/upload-artifact@v3
24
+ if: failure() && steps.build.outcome == 'success'
25
26
+ name: artifacts
27
+ path: ./out/artifacts
28
+
29
build_windows:
30
runs-on: windows-latest
31
steps:
0 commit comments