From c686896438b7178ffcae91c00e8739dba446cf73 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 13 Jul 2023 02:31:06 +0530 Subject: [PATCH] ci: Force handle-subprojects-cache.py to print its output Set python stdout to unbuffered when copying the subproject cache so that we get updates while it is running, and not all at once when the command ends. Part-of: --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 965300cf9e..ef0b3bf1c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -445,7 +445,9 @@ build fedora clang: - chcp 65001 # Renormalize line endings - git add --renormalize subprojects/packagefiles + - $env:PYTHONUNBUFFERED = '1' - ci/scripts/handle-subprojects-cache.py subprojects/ + - $env:PYTHONUNBUFFERED = '' - echo $env:MESON_ARGS # We do not pick up any deps with cmake, so speed up dependency checks - $env:CMAKE = 'false'