Skip to content

Commit

Permalink
Merp
Browse files Browse the repository at this point in the history
  • Loading branch information
ennamarie19 authored and ForAllSecure Mayhem Bot committed Oct 8, 2024
1 parent 4e56e34 commit 5f312c4
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 5 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/mayhem.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Mayhem
on:
push:
pull_request:
workflow_dispatch:
workflow_call:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:
name: ${{ matrix.os }} shared=${{ matrix.shared }} ${{ matrix.build_type }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
shared: [false]
build_type: [Release]
include:
- os: ubuntu-latest
triplet: x64-linux

steps:
- uses: actions/checkout@v2

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Start analysis
uses: ForAllSecure/mcode-action@v1
with:
mayhem-token: ${{ secrets.MAYHEM_TOKEN }}
args: --project miniz-oxide --image ${{ steps.meta.outputs.tags }} --duration 300
sarif-output: sarif

- name: Upload SARIF file(s)
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: sarif
10 changes: 5 additions & 5 deletions Mayhemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
image: ghcr.io/ennamarie19/openslide-fuzz:latest
project: openslide
target: openslide-fuzz
image: ghcr.io/ennamarie19/miniz-oxide-fuzz:latest
project: miniz-oxide
target: inflate-fuzz
testsuite:
- file://test/corpus/inflate_nonwrapping
- file://fuzz/seeds/minimal

cmds:
- cmd: /fuzz
- cmd: /inflate_nonwrapping
libfuzzer: true

0 comments on commit 5f312c4

Please sign in to comment.