From 7439575078845b7882e1e2e894c772051f0ff6ab Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 18 Nov 2025 11:44:50 +0200 Subject: [PATCH] yocto-builder/entrypoint-yocto-check-layer.sh: Replace Poky Following the recent major breaking change with the introduction of bitbake-setup because of which the Poky repository master branch is no longer being updated, the Poky git repository has to be replaced by bitbake and openembedded-core. This fixes the GitHub workflow with branch master of meta-raspberrypi for yocto-check-layer test. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi --- .../yocto-builder/entrypoint-yocto-check-layer.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-images/yocto-builder/entrypoint-yocto-check-layer.sh b/.github/workflows/docker-images/yocto-builder/entrypoint-yocto-check-layer.sh index 474a24e..71805d8 100755 --- a/.github/workflows/docker-images/yocto-builder/entrypoint-yocto-check-layer.sh +++ b/.github/workflows/docker-images/yocto-builder/entrypoint-yocto-check-layer.sh @@ -20,7 +20,8 @@ TEMP_DIR="$(mktemp -d)" cd "$TEMP_DIR" REPOS=" \ - git://git.yoctoproject.org/poky.git \ + git://git.openembedded.org/openembedded-core \ + git://git.openembedded.org/bitbake \ " for repo in $REPOS; do log "Cloning $repo on branch $BASE_REF..." @@ -28,6 +29,6 @@ for repo in $REPOS; do done # shellcheck disable=SC1091,SC2240 -. ./poky/oe-init-build-env build +. ./openembedded-core/oe-init-build-env build yocto-check-layer --with-software-layer-signature-check --debug \ "$GIT_REPO_PATH"