diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:25:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:25:36 +0000 |
commit | 8050c230ded858d59518fce751e28713dd4266f9 (patch) | |
tree | 3b2835ad0af9b436b7ae77963fc10735adc13d25 /.github | |
parent | Adding upstream version 3.5.0+dfsg1. (diff) | |
download | freerdp3-upstream.tar.xz freerdp3-upstream.zip |
Adding upstream version 3.5.1+dfsg1.upstream/3.5.1+dfsg1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/fuzzing.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/fuzzing.yml b/.github/workflows/fuzzing.yml index 948fd42..cf4794f 100644 --- a/.github/workflows/fuzzing.yml +++ b/.github/workflows/fuzzing.yml @@ -3,8 +3,10 @@ name: Fuzzing testing on: workflow_dispatch: branches: [ master, stable* ] - pull_request_target: + pull_request: branches: [ master, stable* ] + schedule: + - cron: "0 3 21 * *" jobs: fuzzing: @@ -15,14 +17,10 @@ jobs: strategy: fail-fast: false matrix: - sanitizer: [address] + sanitizer: [address, undefined] steps: - - uses: suzuki-shunsuke/get-pr-action@v0.1.0 - id: pr - uses: actions/checkout@v4 - with: - ref: ${{steps.pr.outputs.merge_commit_sha}} - name: Build fuzzers (${{ matrix.sanitizer }}) id: build |