Skip to content

Commit c6532fa

Browse files
author
MarcoFalke
committed
Merge #19746: ci: Move valgrind fuzzer to cirrus
fa0538e ci: Set cirrus RAM to 8GB (MarcoFalke) fa41810 ci: Run valgrind fuzzer on cirrus (MarcoFalke) Pull request description: The first commit should fix the 50min timeout in forked repos. Similar to #19424. E.g. https://travis-ci.org/github/bitcoin-core/gui/builds/718322267 The second commit should fix #19744 Top commit has no ACKs. Tree-SHA512: c765098dfa913ca49b1d1eee99aaa83e4b9eb191b7ad5e652e3f04744fe8670dd3ef4215832b8e2b5bac0273d24f607fc275e72f566326108ba42ab57228ffd4
2 parents a2a250c + fa0538e commit c6532fa

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.cirrus.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ container:
55
# https://cirrus-ci.org/faq/#are-there-any-limits
66
# Each project has 16 CPU in total, assign 2 to each container, so that 8 tasks run in parallel
77
cpu: 2
8-
memory: 6G # https://cirrus-ci.org/guide/linux/#linux-containers
8+
memory: 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-containers
99
env:
1010
PACKAGE_MANAGER_INSTALL : "apt-get update && apt-get install -y"
1111
MAKEJOBS: "-j4"
@@ -66,3 +66,11 @@ task:
6666
image: ubuntu:focal
6767
env:
6868
FILE_ENV: "./ci/test/00_setup_env_native_asan.sh"
69+
70+
task:
71+
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, fuzzers under valgrind]'
72+
<< : *GLOBAL_TASK_TEMPLATE
73+
container:
74+
image: ubuntu:focal
75+
env:
76+
FILE_ENV: "./ci/test/00_setup_env_native_fuzz_with_valgrind.sh"

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,6 @@ jobs:
109109
env: >-
110110
FILE_ENV="./ci/test/00_setup_env_native_multiprocess.sh"
111111
112-
- stage: test
113-
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, fuzzers under valgrind]'
114-
env: >-
115-
FILE_ENV="./ci/test/00_setup_env_native_fuzz_with_valgrind.sh"
116-
117112
- stage: test
118113
name: 'x86_64 Linux [GOAL: install] [xenial] [no wallet]'
119114
env: >-

0 commit comments

Comments
 (0)