Manually apply 1e38fc4f1c4a13a466dc6540fd06426d79a3e40c, MPC_LIB_MODI… #545
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fuzz | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 1 * * SUN' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ACE_ROOT: ${{ github.workspace }}/ACE | |
TAO_ROOT: ${{ github.workspace }}/TAO | |
steps: | |
- name: checkout ACE/TAO | |
uses: actions/checkout@v2 | |
- name: Run fuzz | |
run: | | |
perl ${env:ACE_ROOT}/bin/fuzz.pl | |
shell: pwsh |