All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] fix build failures from incorrectly skipped container build jobs
@ 2021-02-08 16:33 Daniel P. Berrangé
  2021-02-08 16:33 ` [PATCH 1/3] gitlab: always build container images Daniel P. Berrangé
                   ` (4 more replies)
  0 siblings, 5 replies; 19+ messages in thread
From: Daniel P. Berrangé @ 2021-02-08 16:33 UTC (permalink / raw)
  To: qemu-devel
  Cc: Alex Bennée, Thomas Huth, Philippe Mathieu-Daudé,
	Daniel P. Berrangé,
	Wainer dos Santos Moschetta

This series fixes a problem with our gitlab CI rules that cause
container builds to be skipped. See the commit description in the
first patch for the details on this problem.

The overall result of this series though is a small increase in overall
pipeline time.

Previously

 - When container jobs are skipped: approx 1hr 5 mins
 - When container jobs are run, cached by docker: approx 1hr 15 mins
 - When container jobs are run, not cached by docker: approx 1hr 30 mins

With this series applied the first scenario no longer exists, so
all piplines are either 1hr 15 or 1hr 30 depending on whether the
container phase is skipped.

On the plus side the builds are more reliable as we're actually
building container images at correct times.

There is still a race condition though where build jobs can run
with the wrong containers. This happens if you push two different
branches to gitlab with different docker file content. If the
container jobs for the 2nd branch finish before the 1st
branch runs its build jobs, the 1st branch can end up using
containers fro the second branch.  The only fix to truely fix
that would be to stop using "latest" docker tag and always
use a tag based on the branch name. This would mean we build
up a growing set of docker images in the gitlab registry.

At least this series is much more correct that what exists in
git currently.

Daniel P. Berrangé (3):
  gitlab: always build container images
  gitlab: add fine grained job deps for all build jobs
  gitlab: fix inconsistent indentation

 .gitlab-ci.d/containers.yml |  7 ----
 .gitlab-ci.yml              | 74 +++++++++++++++++++++++++++++++++----
 2 files changed, 66 insertions(+), 15 deletions(-)

-- 
2.29.2




^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2021-02-16 13:18 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-08 16:33 [PATCH 0/3] fix build failures from incorrectly skipped container build jobs Daniel P. Berrangé
2021-02-08 16:33 ` [PATCH 1/3] gitlab: always build container images Daniel P. Berrangé
2021-02-09  6:37   ` Thomas Huth
2021-02-09  9:58     ` Daniel P. Berrangé
2021-02-10 11:17       ` Daniel P. Berrangé
2021-02-16 12:43         ` Daniel P. Berrangé
2021-02-16 13:02           ` Philippe Mathieu-Daudé
2021-02-16 13:15             ` Daniel P. Berrangé
2021-02-08 16:33 ` [PATCH 2/3] gitlab: add fine grained job deps for all build jobs Daniel P. Berrangé
2021-02-09  6:39   ` Thomas Huth
2021-02-08 16:33 ` [PATCH 3/3] gitlab: fix inconsistent indentation Daniel P. Berrangé
2021-02-08 17:20   ` Philippe Mathieu-Daudé
2021-02-08 17:22 ` [PATCH 0/3] fix build failures from incorrectly skipped container build jobs Daniel P. Berrangé
2021-02-08 18:08   ` Philippe Mathieu-Daudé
2021-02-08 18:12     ` Daniel P. Berrangé
2021-02-09  6:01       ` Stefan Weil
2021-02-09  6:55         ` Thomas Huth
2021-02-09  9:53         ` Daniel P. Berrangé
2021-02-16 10:39 ` Philippe Mathieu-Daudé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.