Skip to content

Commit

Permalink
Merge pull request #42 from jwillemsen/jwi-fuzzaction
Browse files Browse the repository at this point in the history
Use checkout action
  • Loading branch information
jwillemsen authored Oct 14, 2020
2 parents a6207ba + 29ee037 commit 9b99533
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/fuzzr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- cron: '0 1 * * SUN'

env:
AXCIOMA_ROOT: ${{ github.workspace }}/axcioma
X11_BASE_ROOT: ${{ github.workspace }}/axcioma

jobs:
build:
Expand All @@ -18,13 +18,15 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: git clone dependent repositories
run: |
git clone --depth 1 git://github.com/RemedyIT/axcioma.git $AXCIOMA_ROOT
ruby-version: 2.7
- name: checkout axcioma
uses: actions/checkout@v2
with:
repository: RemedyIT/axcioma
path: ${{ env.X11_BASE_ROOT }}
- name: install fuzzr gem
run: |
gem install fuzzr
- name: Run fuzzr
run: |
fuzz -P $AXCIOMA_ROOT/bin/fuzzers
fuzz -P $X11_BASE_ROOT/bin/fuzzers

0 comments on commit 9b99533

Please sign in to comment.