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 <leon.anavi@konsulko.com>
This commit is contained in:
Leon Anavi
2025-11-18 11:44:50 +02:00
committed by Andrei Gherzan
parent 9806b9981a
commit 7439575078

View File

@@ -20,7 +20,8 @@ TEMP_DIR="$(mktemp -d)"
cd "$TEMP_DIR" cd "$TEMP_DIR"
REPOS=" \ REPOS=" \
git://git.yoctoproject.org/poky.git \ git://git.openembedded.org/openembedded-core \
git://git.openembedded.org/bitbake \
" "
for repo in $REPOS; do for repo in $REPOS; do
log "Cloning $repo on branch $BASE_REF..." log "Cloning $repo on branch $BASE_REF..."
@@ -28,6 +29,6 @@ for repo in $REPOS; do
done done
# shellcheck disable=SC1091,SC2240 # 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 \ yocto-check-layer --with-software-layer-signature-check --debug \
"$GIT_REPO_PATH" "$GIT_REPO_PATH"