File: atomic_fuzz.yml

package info (click to toggle)
simdutf 7.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,244 kB
  • sloc: cpp: 60,074; ansic: 14,226; python: 3,364; sh: 321; makefile: 12
file content (25 lines) | stat: -rw-r--r-- 715 bytes parent folder | download
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
name: atomic base64 fuzz

# this runs the atomic base64 fuzzer for a short while.
# it is not covered by the CIFuzz job, since that does not support C++20 fully

on:
    push:
        branches:
        - master
    pull_request:
        branches:
        - master

jobs:
    ubuntu-build:
        runs-on: ubuntu-24.04
        steps:
        - uses: actions/checkout@v4
        - name: install clang
          run: sudo apt install -y clang-18 ccache
        - name: compile and run atomic base64 fuzzer
          run: |
            fuzz/build.sh
            mkdir -p /tmp/atomic_out
            fuzz/out/atomic_base64 -max_len=20000 -timeout=10 -max_total_time=300 -jobs=$(nproc) -workers=$(nproc) /tmp/atomic_out