File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
# ## Global defaults
2
2
3
- timeout_in : 120m # https://cirrus-ci.org/faq/#instance-timed-out
4
- container :
5
- # https://cirrus-ci.org/faq/#are-there-any-limits
6
- # Each project has 16 CPU in total, assign 2 to each container, so that 8 tasks run in parallel
7
- cpu : 2
8
- memory : 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-containers
9
- kvm : true # Use kvm to avoid spurious CI failures in the default virtualization cluster, see https://github.com/bitcoin/bitcoin/issues/20093
10
3
env :
11
4
PACKAGE_MANAGER_INSTALL : " apt-get update && apt-get install -y"
12
5
MAKEJOBS : " -j4"
@@ -30,6 +23,13 @@ base_template: &BASE_TEMPLATE
30
23
# ## Global task template
31
24
global_task_template : &GLOBAL_TASK_TEMPLATE
32
25
<< : *BASE_TEMPLATE
26
+ timeout_in : 120m # https://cirrus-ci.org/faq/#instance-timed-out
27
+ container :
28
+ # https://cirrus-ci.org/faq/#are-there-any-limits
29
+ # Each project has 16 CPU in total, assign 2 to each container, so that 8 tasks run in parallel
30
+ cpu : 2
31
+ memory : 8G # Set to 8GB to avoid OOM. https://cirrus-ci.org/guide/linux/#linux-containers
32
+ kvm : true # Use kvm to avoid spurious CI failures in the default virtualization cluster, see https://github.com/bitcoin/bitcoin/issues/20093
33
33
ccache_cache :
34
34
folder : " /tmp/ccache_dir"
35
35
depends_built_cache :
62
62
<< : *BASE_TEMPLATE
63
63
container :
64
64
image : ubuntu:bionic # For python 3.6, oldest supported version according to doc/dependencies.md
65
+ cpu : 1 # Cut bill in half for linting
65
66
# For faster CI feedback, immediately schedule the linters. https://cirrus-ci.org/pricing/#compute-credits
66
67
use_compute_credits : $CIRRUS_REPO_FULL_NAME == 'bitcoin/bitcoin'
67
68
setup_script :
You can’t perform that action at this time.
0 commit comments