From 1567e8ee6c0f96f4b89a3d1515cca65b8c2849e4 Mon Sep 17 00:00:00 2001 From: Max Gautier Date: Mon, 27 Jan 2025 15:17:23 +0100 Subject: [PATCH] Add timestamp to kaniko builds (#11923) The build steps at the start of CI takes about 2 minutes; now that we have greatly reduced the overall duration, this is not an insignificant impact. Add timestamps to the build process to see measure which steps of the image build take the most time. --- .gitlab-ci/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/build.yml b/.gitlab-ci/build.yml index 89cbd196c..b2bde1296 100644 --- a/.gitlab-ci/build.yml +++ b/.gitlab-ci/build.yml @@ -25,6 +25,7 @@ --label 'git-branch'=$CI_COMMIT_REF_SLUG --label 'git-tag=$CI_COMMIT_TAG' --destination $PIPELINE_IMAGE + --log-timestamp=true pipeline-image: extends: .build-container