CI #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
jobs: | |
prepare_env: | |
runs-on: ubuntu-latest | |
name: Create new Hetzner Cloud instance for build | |
steps: | |
- uses: stonemaster/hetzner-github-runner@v2 | |
with: | |
github-api-key: ${{ secrets.GH_API_KEY }} | |
hetzner-api-key: ${{ secrets.HETZNER_API_KEY }} | |
hetzner-instance-type: cpx51 | |
build: | |
runs-on: self-hosted | |
needs: prepare_env | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: 'meta-slint' | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y chrpath diffstat lz4 locales build-essential wget cpio file gawk zstd python3 python3-distutils | |
sudo locale-gen en_US.UTF-8 | |
sudo update-locale | |
- run: | | |
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 | |
bitbake-layers add-layer ../../meta-openembedded/meta-oe | |
bitbake-layers add-layer ../../meta-rust-bin | |
bitbake-layers add-layer ../../meta-clang | |
bitbake-layers add-layer ../../meta-slint | |
echo 'PREFERRED_PROVIDER_virtual/kernel = "linux-dummy"' >> conf/local.conf | |
echo 'MACHINE = "qemuarm64"' >> conf/local.conf | |
echo 'CLANGSDK = "1"' >> conf/local.conf | |
echo 'PACKAGECONFIG:append:pn-slint-cpp = " backend-linuxkms renderer-skia system-testing"' >> conf/local.conf | |
echo 'TOOLCHAIN_HOST_TASK:append = " nativesdk-slint-cpp"' >> conf/local.conf | |
- name: "Build Package and Demos" | |
run: | | |
cd poky | |
. oe-init-build-env | |
bitbake -c compile slint-hello-world | |
bitbake -c compile slint-demos | |
bitbake core-image-minimal -c populate_sdk | |
- name: "Switch to Scarthgap" | |
run: | | |
for dir in poky meta-openembedded meta-clang; do | |
pushd $dir | |
git checkout -f scarthgap | |
popd | |
done | |
- name: "Build Package and Demos" | |
run: | | |
cd poky | |
. oe-init-build-env | |
bitbake -c compile slint-hello-world | |
bitbake -c compile slint-demos | |
bitbake core-image-minimal -c populate_sdk |