summaryrefslogtreecommitdiff
path: root/.github/workflows/fuzz.yml
blob: 011e9b820743ff144a70ae16728756b45121f5d6 (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@v1
    - name: Run fuzz
      run: |
        perl ${env:ACE_ROOT}/bin/fuzz.pl
      shell: pwsh