summaryrefslogtreecommitdiff
path: root/.github/workflows/fuzz.yml
blob: e95d3d50182700f53558a1a3d4ddea3ba9347674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: fuzz

on:
  push:
  pull_request:
  schedule:
    - cron: '0 7 * * SUN'

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