Skip to content

Commit 7439575

Browse files
leon-anaviagherzan
authored andcommitted
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 <[email protected]>
1 parent 9806b99 commit 7439575

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docker-images/yocto-builder/entrypoint-yocto-check-layer.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ TEMP_DIR="$(mktemp -d)"
2020
cd "$TEMP_DIR"
2121

2222
REPOS=" \
23-
git://git.yoctoproject.org/poky.git \
23+
git://git.openembedded.org/openembedded-core \
24+
git://git.openembedded.org/bitbake \
2425
"
2526
for repo in $REPOS; do
2627
log "Cloning $repo on branch $BASE_REF..."
2728
git clone --depth 1 --branch "$BASE_REF" "$repo"
2829
done
2930

3031
# shellcheck disable=SC1091,SC2240
31-
. ./poky/oe-init-build-env build
32+
. ./openembedded-core/oe-init-build-env build
3233
yocto-check-layer --with-software-layer-signature-check --debug \
3334
"$GIT_REPO_PATH"

0 commit comments

Comments
 (0)