Skip to content

Update transformers requirement from ~=4.38.2 to ~=4.47.1 (#168) #1

Update transformers requirement from ~=4.38.2 to ~=4.47.1 (#168)

Update transformers requirement from ~=4.38.2 to ~=4.47.1 (#168) #1

Workflow file for this run

name: ClusterFuzzLite continuous builds
on:
push:
branches:
- main # Use your actual default branch here.
permissions: read-all
jobs:
Build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
sanitizer:
- address
# Override this with the sanitizers you want.
# - undefined
# - memory
steps:
- name: Build Fuzzers (${{ matrix.sanitizer }})
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@v1
with:
language: python # Change this to the language you are fuzzing.
sanitizer: ${{ matrix.sanitizer }}
upload-build: true