From 8450b79c705d25af217702164ef11fd6c5974b3c Mon Sep 17 00:00:00 2001 From: Francisco Redondo Marchena Date: Tue, 26 Jun 2018 10:31:43 +0100 Subject: WORKAROUND: limit the number of fetchers to 1 There is a bug in buildstream when we are fetching the same thing multiple times https://gitlab.com/BuildStream/buildstream/issues/5 There is an issue in the pipelines when we are fetching delta/linux to build different packages for different jobs, so this will limit to fetch this package maximum of 12 times at the same time. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d6002ded..8778f772 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,6 +52,9 @@ variables: echo " baserock:" >> ~/.config/buildstream.conf echo " artifacts:" >> ~/.config/buildstream.conf echo " url: ssh://ostree@ostree.baserock.org:22200/cache" >> ~/.config/buildstream.conf + echo "scheduler:" >> ~/.config/buildstream.conf + echo " fetchers: 1" >> ~/.config/buildstream.conf + echo " on-error: quit" >> ~/.config/buildstream.conf fi cat ~/.config/buildstream.conf -- cgit v1.2.1