From 18daf3ead2990179cb56c08925284952ccb3cde9 Mon Sep 17 00:00:00 2001 From: DanyLE Date: Fri, 21 Mar 2025 19:04:04 +0100 Subject: [PATCH] feat: add CI pipeline --- .gitea/workflows/ci.yml | 21 +++++++++++++++++++++ meta-diya | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..b8d00ae --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,21 @@ +name: diya-opi-distrib +run-name: Building diya-opi-distrib +on: [push] + +jobs: + build: + runs-on: ci-yocto-jammy + volumes: + - /home/yocto-build/diya-opi-distrib:/build + timeout-minutes: 480 + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Update submodule + run: git submodule update --init + - name: Building image and sdk + run: | + cd poky && source oe-init-build-env /build + cat conf/*.conf + bitbake core-image-base + bitbake core-image-base -c populate_sdk diff --git a/meta-diya b/meta-diya index 4ec5c71..b333742 160000 --- a/meta-diya +++ b/meta-diya @@ -1 +1 @@ -Subproject commit 4ec5c71110323d6690eab089ec242b690dc27e4d +Subproject commit b333742f9f51d88fde0d81f5d9ce825296032717