Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmp_tool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dominik Loidolt
cmp_tool
Merge requests
!32
Add fuzzing testing setup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Add fuzzing testing setup
fuzz
into
master
Overview
0
Commits
13
Changes
25
Merged
Add fuzzing testing setup
Dominik Loidolt
requested to merge
fuzz
into
master
May 2, 2024
Overview
0
Commits
13
Changes
25
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
434ec96d
13 commits,
May 2, 2024
25 files
+
1117
−
6
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
.clusterfuzzlite/Dockerfile
0 → 100644
+
11
−
0
View file @ 434ec96d
Edit in single-file editor
Open in Web IDE
# Base image with clang toolchain
FROM
gcr.io/oss-fuzz-base/base-builder:v1@sha256:f161edec0c10ad31ced9fcec3d4d0d1dd8a36a22de9ebef136a41dcfac34d1ba
# install required packages to build your project
RUN
apt-get update
&&
apt-get
install
-y
python3-pip ninja-build
RUN
pip
install
-U
--pre
meson
# Copy your project's source code
COPY
. $SRC/cmp_tool
# Working directory for build.sh.
WORKDIR
$SRC/cmp_tool
# Copy build.sh into $SRC dir.
COPY
.clusterfuzzlite/build.sh $SRC/
Loading