Skip to content

Commit

Permalink
Merge branch 'main' into artifact-size
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo authored Oct 4, 2024
2 parents 6c260f0 + 1433cbd commit 156b85e
Show file tree
Hide file tree
Showing 154 changed files with 1,737 additions and 698 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/cifuzz.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CIFuzz
on: [pull_request]
jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'wasmer'
language: rust
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'wasmer'
language: rust
fuzz-seconds: 300
- name: Upload Crash
uses: actions/upload-artifact@v3
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ lcov.info
link/
link.tar.gz
.vscode
# Ignore files used by the "direnv" tool.
.direnv
.envrc
Loading

0 comments on commit 156b85e

Please sign in to comment.