Skip to content

Commit 831517b

Browse files
committed
ci: workaround apply_poky_patches() which fail
apply_poky_patches() fails when running setup-environment, since the patch we try to apply effectively does not apply. This issue has been reported and will be fixed in QLI1.x but for now, since Github enforces 'set -e', we need to deal with it. Signed-off-by: Nicolas Dechesne <[email protected]>
1 parent 6ea28d3 commit 831517b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ jobs:
5555
- name: Build QLI
5656
run: |
5757
cd QLI
58+
# FIXME: apply_poky_patches() fails in setup-environment and it's not
59+
# needed, so skip it for now, until it's fixed properly.
60+
sed -i '/ apply_poky_patches/d' setup-environment
5861
MACHINE=${{ matrix.machine }} DISTRO=qcom-wayland QCOM_SELECTED_BSP=${{ matrix.bsp }} source setup-environment
5962
bitbake-layers add-layer $GITHUB_WORKSPACE
6063
bitbake qcom-console-image

0 commit comments

Comments
 (0)