blob: 8d066ab52bacfa450035d3a2142390ae8cb8b714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Default BuildStream user configuration.
#
# Work Directories
#
#
# Note that BuildStream forces the XDG Base Directory names
# into the environment if they are not already set, and allows
# expansion of '~' and environment variables when specifying
# paths.
#
# Location to store sources
sourcedir: ${XDG_CACHE_HOME}/buildstream/sources
# Location to perform builds
builddir: ${XDG_CACHE_HOME}/buildstream/build
# Location to store local binary artifacts
artifactdir: ${XDG_CACHE_HOME}/buildstream/artifacts
# Location to store build logs
logdir: ${XDG_CACHE_HOME}/buildstream/logs
#
# Scheduler
#
scheduler:
# Maximum number of simultaneous source downloading tasks.
fetchers: 10
# Maximum number of simultaneous build tasks.
builders: 4
# Maximum number of simultaneous artifact uploading tasks.
pushers: 4
# Maximum number of retries for network tasks.
network-retries: 2
# What to do when an element fails, if not running in
# interactive mode:
#
# continue - Continue queueing jobs as much as possible
# quit - Exit after all ongoing jobs complete
# terminate - Terminate any ongoing jobs and exit
#
on-error: quit
#
# Artifacts
#
artifacts:
# A url from which to download prebuilt artifacts
pull-url: ''
# A url to upload built artifacts to
# (must point to the same repository as pull-url)
push-url: ''
# Specify the port number for pushing artifacts, if it's
# not the default port 22
push-port: 22
#
# Logging
#
logging:
# The abbreviated cache key length to display in the UI
key-length: 8
# Whether to show extra detailed messages
verbose: True
# Maximum number of lines to print from the
# end of a failing build log
error-lines: 20
# Maximum number of lines to print in a detailed
# message on the console or in the master log (the full
# messages are always recorded in the individual build
# logs)
message-lines: 20
# Whether to enable debugging messages
debug: False
# Format string for printing the pipeline at startup, this
# also determines the default display format for `bst show`
element-format: |
%{state: >12} %{key} %{name} %{workspace-dirs}
|