From eae4384bb0ecc1ab6c9856ae72cce01a8fe9665f Mon Sep 17 00:00:00 2001 From: gitbot <gitbot@garz-fricke.com> Date: Tue, 12 Jul 2022 15:10:46 +0000 Subject: [PATCH] Integrate meta-seconorth-machine/update-gitlab-ci -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/3c880db4e2f6741ee008feb0d1654963f8ededcd Integrate gitlab-ci/share-build-and-test-job-basics -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/075aeccbcc116de5ff05de53460f5db3fd40802d Refactoring: share build and test job basics for ci-test and Yocto This shares YAML code for the following procedures: - Build environment - Source code checkout via repo - SSH key and known hosts setup - LAVA test submission - Docker check if build folder is empty -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/180fb023fd920d609e1e812b7bb795bfb1301d43 Integrate gitlab-ci/CI-hardcoded-artifact-path-for-fngsystem -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/6508e800125713ebb7efc6f3c1547fe1e52eca8f CI: Add hardcoded artifact's path generation also for fng system -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/9e57f620e129c797b37c36c0d974e900d6e20925 Integrate gitlab-ci/CI-variable-scope-for-CI_PARAM_IMAGE-and-more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/c503a6d442e77bd1761d815ffcda7e19a9f71048 CI: pipeline yocto: Change scope of CI_PARAM_IMAGE, ... to fix fngsystem build The variables CI_PARAM_IMAGE, CI_PARAM_DISTRO, CI_MACHINE have been defined outside the job in the '.gitlab-ci.yml' file. This has a lower precedence then variables defined inside the job, but it seems that these variables are used in the scope of 'Trigger variables' when available in the trigger job. These override the value set in the template. As main results this made FNGSystem jobs build the normal yocto. -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/e8fed12ba1e80950c5c257d48c2df85e3f9105d1 Integrate gitlab-ci/CI-readd-allow-failure-true -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/ea3aa8164756750f9e8fbfd642ea1ebdf871fc5a CI: Readd allow_failure:true to fix not finished pipelines According to the docs a manual job always has allow_failure set to true, but we see a lot of jobs staying in an unfinished state since the removal of the allow_failure: true keyword for the sdk and test jobs. This should fix the broken behaviour. -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/ce63d1ef679836d96cd37ebd8d962b0642012daf Integrate gitlab-ci/test-artifact-upload -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/dc0503b699bc0fe529a8ca72216b18b0a093be0a CI: Hardcode the artifacts path in the generated job description Some gitlab update(?) seem to have changed the behaviour in variable passing. In the scripts the variables are available but in the artifacts path does not resolve them any more. May be it has something to do with the introduction of the trigger:forward keyword. -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/f854a0780b5267de7a12f1fd6fa5b6296d024478 Integrate gitlab-ci/really-include-yamllint-in-manifest-pipeline -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/f39e65ab8d6dd2d9ef1123b53ab66b2dff028481 Manifest: really include yamllint in the full pipeline Previous commit did not have the effect due to wrong extend order. -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/7be7421e9e853c5b6e9b7364039b013c8acb4ca4 Integrate gitlab-ci/sdk-deployment and 5 more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/0dd147c81c6ee788b54b58ebf0fb21c9ecc1bea8 SDK: Remove package step from build sdk, add sdk to artifacts, create deploy_sdk -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/ecab2962e4f71ac82acd0067a909a45f6e8b44fc Manifest: include yamllint in full pipeline -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/a4071423fcf44fb2af383787be469a778489b840 Manifest pipeline: run full build pipeline when triggered via web UI -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/8862b213bc46607ba394ceb051037350bd567863 Manifest refactoring: move job rules into classes This way they can be reused instead of redefining them in each job. -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/d604b3306d9f61de19b121d51351b86cc5e8bb50 Fix wrong remote name in ci-test pipeline -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/e810c2ac59ea3143f5cd109fecd796b08bf74c9c Fix wrong manifest project ID for ci-test pipeline -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/cfa6b992019cf645134a743323d026cc8f4e38a2 Integrate gitlab-ci/share-manifest-pipeline and 2 more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/9b8cf51c0c280b8373ae3b809e3a5b24b2d61f30 Share manifest pipeline for ci-test and yocto Combine all common yaml parts in manifest-pipeline.yml and add manifest-pipeline-yocto.yml and manifest-pipeline-ci-test.yml containing the different variable assignments for each environment. This change implicitly introduces parent-child build job generation in the ci-test pipeline, like it is done in the yocto pipeline already. The ci-test build jobs have been moved to build-jobs-ci-test.jinja2 accordingly. Furthermore rename GITLAB_CI_CURRENT_REV to GITLAB_CI_REVISION and remove the run conditions from all generated build jobs, since these are already present in the upstream trigger job. The repos including these files have to be updated with the new file and variable names. -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/c1b939fea87377705bead671721f68234dac74c1 Use CI variables in build template directly The job generation script implicitly passes the OS environment to the template, so that the template has access to all GitLab CI variables. Hence there is no need to explicitly pass any of them as command line arguments. This change makes the "generate-build-jobs" job more generic, so that it can be shared with the ci-test pipeline in the future. -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/775c09c131012145236874612f9dd97bc7f73cb3 Add gitlab_backup script to download all project exports of a gitlab group -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/f3add7665e71483b2ba7712d7924950078869728 Integrate gitlab-ci/fix-build-merge-request-job and 1 more -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/7f68f3070c9732bd3df575f88e0e66971e068b09 Yocto manifest build: re-enable build:merge_request job This job was accidentally disabled in 2e6c1b4, because it was included in the generated child pipeline. This pipeline is not created on the master, though, so the condition for the job was never met. Move the job to the parent pipeline again, so that it gets executed on the master like before. -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/970c7fd79873ce1e0a37db369b5f99c793239878 Re-add yamllint stage to ci test manifest pipeline Was accidentally removed in previous commit. -- Commit: https://git.seco.com/seco-ne/yocto/layers/meta-seconorth-machine/-/commit/1427c22227712c2f59f0a523abda4e0ada2b16f4 Integrate gitlab-ci/define-yamllint-explicitly -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/2b2bc22010347ad46361e2d781a3d8ff745a1710 Define yamllint job explicitly in each pipeline The yamllint job was included in the pipeline implicitly via the inclusion of common.yml. This is not very transparent. Make the common definition a base job and extend it explicitly in each pipeline now. Add infrastructure stage comment header into both yaml files. --- default.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.xml b/default.xml index 13757aa4..d5fbc27f 100644 --- a/default.xml +++ b/default.xml @@ -20,7 +20,7 @@ <project name="meta-qt5.git" revision="5b71df60e523423b9df6793de9387f87a149ac42" remote="qt5-github" path="sources/meta-qt5" /> <project name="meta-freescale.git" revision="2fb1ce365338126aad365012ebb913b3e4a9f1be" remote="fslc" path="sources/meta-freescale" /> <project name="meta-freescale-distro.git" revision="fc15f5003043da23212596be7366ae2547c308ad" remote="fslc" path="sources/meta-freescale-distro" /> - <project name="layers/meta-seconorth-machine" revision="6593e17855c2821a2a3f1dd9de409be2ef10cda9" remote="seco-ne" path="sources/meta-seconorth-machine" /> + <project name="layers/meta-seconorth-machine" revision="3c880db4e2f6741ee008feb0d1654963f8ededcd" remote="seco-ne" path="sources/meta-seconorth-machine" /> <project name="layers/meta-seconorth-distro" revision="4f158f418db653b2c420f02928267a3b04b05e1f" remote="seco-ne" path="sources/meta-seconorth-distro" /> <project name="layers/meta-seconorth-nogplv3" revision="1f71143faccdaaac910a0abf1429411eabcccaa2" remote="seco-ne" path="sources/meta-seconorth-nogplv3" /> <project name="config" revision="b40f13f9f26dfd1a46bfe35eb74ec254d70b9898" remote="seco-ne" path=".conf" > -- GitLab