1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

murdock: prioritize job collection over build jobs

Previously, the fanned out job collection would add it's jobs to the
"default" queue, competing with build jobs. This could lead to a
situation where job collection would take very long or even time out.

This PR choses "default-first" as queue for the fan-out. Workers are
expected to add that queue *before* "default", so its jobs get processed
first.
This commit is contained in:
Kaspar Schleiser 2022-02-03 13:27:42 +01:00
parent 96dcc35f33
commit 536c0dd1d4

View File

@ -376,7 +376,7 @@ get_compile_jobs() {
get_apps | \
maybe_filter_changed_apps | \
dwqc ${DWQ_ENV} -s \
dwqc ${DWQ_ENV} --queue default-first -s \
${DWQ_JOBID:+--subjob} \
"$0 get_app_board_toolchain_pairs \${1} $0 compile"
}