From 7847fc452839764af44e743bdfd8653b77936450 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 3 Nov 2023 17:17:29 -0700 Subject: [PATCH] DO NOT MERGE: Add Github actions CI support * Add a build badge to README.md * Add yoe.yml for Github actions CI support Signed-off-by: Khem Raj --- .github/workflows/yoe.yml | 84 +++++++++++++++++++++++++++++++++++++++ README.md | 2 + 2 files changed, 86 insertions(+) create mode 100644 .github/workflows/yoe.yml diff --git a/.github/workflows/yoe.yml b/.github/workflows/yoe.yml new file mode 100644 index 00000000000..c70d1b50534 --- /dev/null +++ b/.github/workflows/yoe.yml @@ -0,0 +1,84 @@ +name: Yoe Distro CI + +on: + # Trigger the workflow on push or pull request, + # but only for the master branch + push: + branches: + - yoe/mut + pull_request: + branches: + - master +jobs: + build: + name: Yoe Build + runs-on: [self-hosted, Linux] + timeout-minutes: 720 + steps: + - name: Fetch Repo Name + id: repo-name + run: echo "value=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + submodules: recursive + - name: checkout yoe + run: | + git clone --recurse-submodules -j8 -b master https://github.com/YoeDistro/yoe-distro.git yoe + cd yoe + git checkout master + git pull + git submodule update --recursive --init + rm -rf sources/${{ steps.repo-name.outputs.value }}/* + rsync -av --progress --exclude="yoe" --exclude=".git" `pwd`/../ sources/${{ steps.repo-name.outputs.value }}/ + - name: Setup + run: | + cd yoe + export DOCKER_REPO=none + export LANG=en_US.UTF-8 + export SSTATE_CACHE_DIR=/scratch/sstate-cache + echo export DOCKER_REPO=none > local.sh + echo export LANG=en_US.UTF-8 >> local.sh + echo export SSTATE_CACHE_DIR=/scratch/sstate-cache >> local.sh + cp conf/local.conf.sample conf/local.conf + echo SSTATE_DIR = \"$SSTATE_CACHE_DIR\" >> conf/local.conf + echo IMAGE_CLASSES += \"testimage testsdk\" >> conf/local.conf + echo INHERIT += \"report-error rm_work\" >> conf/local.conf + echo ERR_REPORT_SERVER = \"errors.yoctoproject.org\" >> conf/local.conf + echo ERR_REPORT_PORT = \"80\" >> conf/local.conf + echo ERR_REPORT_USERNAME = \"Yoe Distro CI\" >> conf/local.conf + echo ERR_REPORT_EMAIL = \"info@yoedistro.org\" >> conf/local.conf + echo TOOLCHAIN = \"clang\" >> conf/local.conf + echo BB_NUMBER_THREADS = \"16\" >> conf/local.conf + echo PARALLEL_MAKE = \"-j 32\" >> conf/local.conf + echo ZSTD_THREADS = \"8\" >> conf/local.conf + echo XZ_THREADS = \"8\" >> conf/local.conf + echo XZ_MEMLIMIT = \"20%\" >> conf/local.conf + echo CLANGSDK = \"1\" >> conf/local.conf + echo IMAGE_INSTALL:append = \" clang \" >> conf/local.conf + echo SDKMACHINE = \"aarch64\" >> conf/local.conf + /bin/bash -c "sed -i -e 's/PACKAGE_FEED_URI.*$//' conf/site.conf" + /bin/bash -c "sed -i -e 's/SDK_UPDATE_URL.*$//' conf/site.conf" + - name: Build Image + run: | + cd yoe + /bin/bash -c ". ./envsetup.sh qemuarm64 && bitbake yoe-kiosk-image yoe-sdk-image yoe-debug-image" + - name: Build SDK + run: | + cd yoe + /bin/bash -c ". ./envsetup.sh qemuarm64 && bitbake yoe-debug-image -cpopulate_sdk_ext" + - name: Test Image + run: | + cd yoe + export DISPLAY=":0" + echo TESTIMAGE_AUTO:qemuall = \"1\" >> conf/local.conf + /bin/bash -c ". ./envsetup.sh qemuarm64 && bitbake yoe-sdk-image" + - name: Prepare results + run: | + cd yoe + /bin/bash -c ". ./envsetup.sh qemuarm64 && resulttool report build/tmp/log/oeqa" + - name: Clean shared state + run: | + cd yoe + /bin/bash -c ". ./envsetup.sh qemuarm64 && ./sources/poky/scripts/sstate-cache-management.py -d --remove-orphans -y " diff --git a/README.md b/README.md index 7318f09cdba..c6cfc1f1c7f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Yoe Distro CI](https://github.com/YoeDistro/meta-openembedded/workflows/Yoe%20Distro%20CI/badge.svg?branch=yoe%2Fmut)](https://github.com/YoeDistro/meta-openembedded/actions/workflows/yoe.yml?query=workflow%3AYoe+branch%3Ayoe%2Fmut) + Collection of layers for the OE-core universe Main layer maintainer: Khem Raj