diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-11-11 14:21:33 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-11-11 14:21:37 +0100 |
commit | 155bf91c3b66e3ec9f870d8161e1a3c9a5c23251 (patch) | |
tree | 1f728ec4ca0690ba272ee9b47d3327d7dd231300 | |
parent | fa8dd34e918cd80db215df8937aaf6bb1552fcd9 (diff) | |
parent | fa92cf29d971811ff8dd844ee1a1e2e12b79e389 (diff) |
Merge #20368: ci: Remove redundant valgrind fuzz task
fa92cf29d971811ff8dd844ee1a1e2e12b79e389 ci: Remove redundant valgrind fuzz task (MarcoFalke)
Pull request description:
This task has several issues:
* It slows down other tasks and times out: It needs a lot of resources (CPU, RAM, time), because it builds more than 100 fuzzers, clones a 2 GB repo with 100k seeds and pipes them all through valgrind
* It doesn't add a lot of value: Except for one issue in the boost time library, it hasn't found any issues that the existing fuzz,asan,ubsan fuzzer has already found
* It is redundant: It is already run in the bitcoin-core/qa-assets repo on every push of new seeds and once daily
Fix all issues by removing it here.
Top commit has no ACKs.
Tree-SHA512: 76d16a3e5afc79ba9d89cfeb915d7e66fd1ad4e2035ae4ccd30a21cc060bfba3fb6a904346b7c41606e69d972e86bf660df962673028689227cc26072bba24bd
-rw-r--r-- | .cirrus.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 6a496f00a3..415aa549f1 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -113,14 +113,6 @@ task: FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh" task: - name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, fuzzers under valgrind]' - << : *GLOBAL_TASK_TEMPLATE - container: - image: ubuntu:focal - env: - FILE_ENV: "./ci/test/00_setup_env_native_fuzz_with_valgrind.sh" - -task: name: 'x86_64 Linux [GOAL: install] [focal] [multiprocess]' << : *GLOBAL_TASK_TEMPLATE container: |