Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
6213161e
Commit
6213161e
authored
2 years ago
by
Mira Ressel
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add a new ci job to fuzz sp-arithmetic (#13673)
as requested in https://github.com/paritytech/ci_cd/issues/761
parent
3a3905cc
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
substrate/scripts/ci/gitlab/pipeline/test.yml
+36
-0
36 additions, 0 deletions
substrate/scripts/ci/gitlab/pipeline/test.yml
with
36 additions
and
0 deletions
substrate/scripts/ci/gitlab/pipeline/test.yml
+
36
−
0
View file @
6213161e
...
...
@@ -432,3 +432,39 @@ cargo-check-each-crate-macos:
-
time cargo check --workspace --locked
tags
:
-
osx
cargo-hfuzz
:
stage
:
test
extends
:
-
.docker-env
-
.test-refs
-
.pipeline-stopper-artifacts
variables
:
# max 10s per iteration, 60s per file
HFUZZ_RUN_ARGS
:
>
--exit_upon_crash
--exit_code_upon_crash 1
--timeout 10
--run_time 60
artifacts
:
name
:
"
hfuzz-$CI_COMMIT_SHORT_SHA"
expire_in
:
7 days
when
:
on_failure
paths
:
-
primitives/arithmetic/fuzzer/hfuzz_workspace/
script
:
# use git version of honggfuzz-rs until v0.5.56 is out, we need a few recent changes:
# https://github.com/rust-fuzz/honggfuzz-rs/pull/75 to avoid breakage on debian
# https://github.com/rust-fuzz/honggfuzz-rs/pull/81 fix to the above pr
# https://github.com/rust-fuzz/honggfuzz-rs/pull/82 fix for handling rusty-cachier's absolute CARGO_TARGET_DIR
-
|
cat >>Cargo.toml <<EOF
[patch.crates-io]
honggfuzz = { git = 'https://github.com/altaua/honggfuzz-rs', rev = '205f7c8c059a0d98fe1cb912cdac84f324cb6981' }
EOF
-
cd ./primitives/arithmetic/fuzzer
-
rusty-cachier snapshot create
-
cargo hfuzz build
-
rusty-cachier cache upload
-
for target in $(cargo read-manifest | jq -r '.targets | .[] | .name'); do
cargo hfuzz run "$target" || { printf "fuzzing failure for %s\n" "$target"; exit 1; }; done
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment