From d2086273ebb8b40afd359df4a8401f4252e23c1f Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Thu, 12 Sep 2024 15:37:58 +0300 Subject: [PATCH] CI: temporarily add meta-oe to the setup Add meta-oe to build setup to unbreak recipes using python3-pefile-native Signed-off-by: Dmitry Baryshkov --- .github/workflows/build-template.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-template.yml b/.github/workflows/build-template.yml index 3118434..4193086 100644 --- a/.github/workflows/build-template.yml +++ b/.github/workflows/build-template.yml @@ -28,6 +28,7 @@ on: env: POKY_URL: https://git.yoctoproject.org/poky + META_OE_URL: https://github.com/openembedded/meta-openembedded DISTRO: poky TCLIBC: glibc musl KERNELS: linaro-qcomlt yocto @@ -58,12 +59,14 @@ jobs: git_trees: - branch: ${{inputs.branch}} url: $POKY_URL + - branch: ${{inputs.branch}} + url: $META_OE_URL - ${{inputs.ref_type}}: ${{inputs.ref}} url: ${{inputs.url}} distro: $DISTRO target: ${{inputs.images}} bblayers_conf: - - BBLAYERS += '../$(echo ${{github.repository}} | cut -d'/' -f2)' + - BBLAYERS += '../$(echo ${{github.repository}} | cut -d'/' -f2) ../meta-openembedded/meta-oe' artifacts: [] EOF