From 2fde36a63654a51b02a9f4aee95db7637dc4bfd8 Mon Sep 17 00:00:00 2001 From: gitbot <gitbot.north@seco.com> Date: Tue, 6 Aug 2024 05:55:31 +0000 Subject: [PATCH] Integrate gitlab-ci/yt-65-solution-with-clone-as-first-stage and 1 more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/667964a6d553480dfa01d80efffd26fae07aa563 Fix typos -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/bd7e9366fb67c10be5ef6deef05b885b150f2643 YT-65 We perform a repository checkout in the manifest project for each build job. Each pipeline builds code for multiple MACHINES. This results in multiple downloads from each repository in the manifest. Occasionally, certain repositories may fail to fetch data. To avoid fetching the same data repeatedly for each build job in the pipeline, the `repo_checkout` stage is added. In this stage, the repo tool prepares the repository structure once and stores it in the cache. Subsequent build jobs use the pre-fetched data from the cache. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index de29fa3..667964a 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit de29fa3ede1868a2617daa4ba25d34a787ae0cf4 +Subproject commit 667964a6d553480dfa01d80efffd26fae07aa563 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b2359bd..45a499b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,9 +4,9 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: de29fa3ede1868a2617daa4ba25d34a787ae0cf4 + ref: 667964a6d553480dfa01d80efffd26fae07aa563 file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: de29fa3ede1868a2617daa4ba25d34a787ae0cf4 + GITLAB_CI_REVISION: 667964a6d553480dfa01d80efffd26fae07aa563 BB_RECIPE_NAME: seco-stm32 -- GitLab