From 87f26c2d25cfa71cd910639f947c4bd03b88cbf6 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 22 Oct 2024 09:39:35 +0200 Subject: [PATCH] Also test scarthgap --- .github/workflows/ci.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 761f07b..963d6c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,10 +28,10 @@ jobs: sudo locale-gen en_US.UTF-8 sudo update-locale - run: | - git clone -b kirkstone --single-branch git://git.yoctoproject.org/poky - git clone -b kirkstone --single-branch git://git.openembedded.org/meta-openembedded - git clone -b master --single-branch https://github.com/rust-embedded/meta-rust-bin.git - git clone -b kirkstone --single-branch https://github.com/kraj/meta-clang.git + git clone -b kirkstone git://git.yoctoproject.org/poky + git clone -b kirkstone git://git.openembedded.org/meta-openembedded + git clone -b master https://github.com/rust-embedded/meta-rust-bin.git + git clone -b kirkstone https://github.com/kraj/meta-clang.git - run: | cd poky . oe-init-build-env @@ -48,3 +48,14 @@ jobs: . oe-init-build-env bitbake -c compile slint-hello-world bitbake -c compile slint-demos + - run: | + for dir in poky meta-openembedded meta-clang; do + pushd $dir + git checkout -f scarthgap + popd + done + - run: | + cd poky + . oe-init-build-env + bitbake -c compile slint-hello-world + bitbake -c compile slint-demos