From 8fd62c70cfb9ee30fb446c84701e79afe81f7f89 Mon Sep 17 00:00:00 2001 From: gitbot <gitbot@garz-fricke.com> Date: Fri, 11 Aug 2023 13:04:48 +0000 Subject: [PATCH] Integrate gitlab-ci/use-multiple-ci-test-pipelines -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/b20f6b95e2c8dca7d6c4a621259ff22ee5d62dd4 Use multiple CI test pipelines Instead of mixing dedicated CI test jobs and Yocto build simulation jobs within one pipeline, use the new multi-build-pipelines architecture to split them up into separate child pipelines. This also makes most of the Yocto pipeline code reusable, so that we don't have to declare all the jobs again in ci-test. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index f9dc251..b20f6b9 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit f9dc2517c7e05077cfb0d93acc5269ba684c3f6a +Subproject commit b20f6b95e2c8dca7d6c4a621259ff22ee5d62dd4 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d027d2d..ef7b1ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,9 +4,9 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: f9dc2517c7e05077cfb0d93acc5269ba684c3f6a + ref: b20f6b95e2c8dca7d6c4a621259ff22ee5d62dd4 file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: f9dc2517c7e05077cfb0d93acc5269ba684c3f6a + GITLAB_CI_REVISION: b20f6b95e2c8dca7d6c4a621259ff22ee5d62dd4 BB_RECIPE_NAME: gfplatdetect -- GitLab