[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 9/9] gitlab: disable FF_SCRIPT_SECTIONS on msys jobs
From: |
Thomas Huth |
Subject: |
[PULL 9/9] gitlab: disable FF_SCRIPT_SECTIONS on msys jobs |
Date: |
Thu, 3 Aug 2023 13:09:32 +0200 |
From: Daniel P. Berrangé <berrange@redhat.com>
The FF_SCRIPT_SECTIONS=1 variable should ordinarily cause output from
each line of the job script to be presented in a collapsible section
with execution time listed.
While it works on Linux shared runners, when used with Windows runners
with PowerShell, this option does not create any sections, and actually
causes echo'ing of commands to be disabled, making it even worse to
debug the jobs.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Acked-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20230801130403.164060-9-berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
.gitlab-ci.d/windows.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
index 552e3b751d..cd7622a761 100644
--- a/.gitlab-ci.d/windows.yml
+++ b/.gitlab-ci.d/windows.yml
@@ -12,6 +12,10 @@
needs: []
stage: build
timeout: 80m
+ variables:
+ # This feature doesn't (currently) work with PowerShell, it stops
+ # the echo'ing of commands being run and doesn't show any timing
+ FF_SCRIPT_SECTIONS: 0
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
expire_in: 7 days
--
2.39.3
- [PULL 0/9] Fixes for 8.1-rc3, Thomas Huth, 2023/08/03
- [PULL 1/9] util/oslib-win32: Fix compiling with Clang from MSYS2, Thomas Huth, 2023/08/03
- [PULL 2/9] gitlab: remove duplication between msys jobs, Thomas Huth, 2023/08/03
- [PULL 3/9] gitlab: print timestamps during windows msys jobs, Thomas Huth, 2023/08/03
- [PULL 4/9] gitlab: always use updated msys installer, Thomas Huth, 2023/08/03
- [PULL 5/9] gitlab: drop $CI_PROJECT_DIR from cache path, Thomas Huth, 2023/08/03
- [PULL 6/9] gitlab: always populate cache for windows msys jobs, Thomas Huth, 2023/08/03
- [PULL 7/9] configure: support passthrough of -Dxxx args to meson, Thomas Huth, 2023/08/03
- [PULL 8/9] gitlab: disable optimization and debug symbols in msys build, Thomas Huth, 2023/08/03
- [PULL 9/9] gitlab: disable FF_SCRIPT_SECTIONS on msys jobs,
Thomas Huth <=
- Re: [PULL 0/9] Fixes for 8.1-rc3, Richard Henderson, 2023/08/03