[elbe-devel] [PATCH 9/9] github: add actions for package build testing

Thomas Weißschuh thomas.weissschuh at linutronix.de
Fri Mar 21 14:31:33 CET 2025


From: Benedikt Spranger <b.spranger at linutronix.de>

Add basic tests to ensure ELBE is building and can be installed:
- Build Debian Stable packages
- Build Debian Unstable packages
- Build Ubuntu packages and install all packages

Signed-off-by: Benedikt Spranger <b.spranger at linutronix.de>
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
 .github/scripts/install_all.sh                |  9 +++
 .github/scripts/setup_repo.sh                 | 14 +++++
 .github/scripts/update_sources_list.sh        | 10 +++
 .github/templates/reprepro/conf/distributions | 10 +++
 .github/templates/reprepro/conf/options       |  5 ++
 .github/workflows/package.yml                 | 88 +++++++++++++++++++++++++++
 6 files changed, 136 insertions(+)

diff --git a/.github/scripts/install_all.sh b/.github/scripts/install_all.sh
new file mode 100755
index 0000000000000000000000000000000000000000..b2be57784f58c40e5b7261b8cf457dd94577af03
--- /dev/null
+++ b/.github/scripts/install_all.sh
@@ -0,0 +1,9 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-3.0-or-later
+# SPDX-FileCopyrightText: 2023 Linutronix GmbH
+
+ARCH="$(dpkg-architecture -q DEB_BUILD_ARCH)"
+DIST="$(. /etc/os-release; echo ${VERSION_CODENAME/*, /})"
+
+cd repo
+reprepro list "$DIST" | awk '{print "sudo apt-get install -y "$2}' | sh
diff --git a/.github/scripts/setup_repo.sh b/.github/scripts/setup_repo.sh
new file mode 100755
index 0000000000000000000000000000000000000000..c780058af060308dcf7f8cc9597882239921810b
--- /dev/null
+++ b/.github/scripts/setup_repo.sh
@@ -0,0 +1,14 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-3.0-or-later
+# SPDX-FileCopyrightText: 2023 Linutronix GmbH
+
+ARCH="$(dpkg-architecture -q DEB_BUILD_ARCH)"
+DIST="$(. /etc/os-release; echo ${VERSION_CODENAME/*, /})"
+
+mkdir repo
+cp -a .github/templates/reprepro/* repo
+cd repo
+
+find . -type f -exec sed -i -e "s/@ARCH@/${ARCH}/" -e "s/@DIST@/${DIST}/" {} \;
+
+reprepro --ignore=wrongdistribution include "$DIST" ../../*_${ARCH}.changes
diff --git a/.github/scripts/update_sources_list.sh b/.github/scripts/update_sources_list.sh
new file mode 100755
index 0000000000000000000000000000000000000000..f7de93de247cd1f9fc613b28061d89e6c703f0bb
--- /dev/null
+++ b/.github/scripts/update_sources_list.sh
@@ -0,0 +1,10 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-3.0-or-later
+# SPDX-FileCopyrightText: 2023 Linutronix GmbH
+
+DIST="$(. /etc/os-release; echo ${VERSION_CODENAME/*, /})"
+
+echo "deb [trusted=yes] file://$(pwd)/repo ${DIST} main" \
+     > /etc/apt/sources.list.d/elbe.list
+
+apt-get update
diff --git a/.github/templates/reprepro/conf/distributions b/.github/templates/reprepro/conf/distributions
new file mode 100644
index 0000000000000000000000000000000000000000..1e02dcf702583872d73a9930f5b48904f1e45d70
--- /dev/null
+++ b/.github/templates/reprepro/conf/distributions
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: 0BSD
+# SPDX-FileCopyrightText: 2023 Linutronix GmbH
+
+Origin: elbe
+Label: elbe
+Codename: @DIST@
+Architectures: source @ARCH@
+Components: main
+Description: E.L.B.E. packages repository (unsafe)
+# SignWith: 8044921302364FBDC541F38971F7AE8C018CE6CB
diff --git a/.github/templates/reprepro/conf/options b/.github/templates/reprepro/conf/options
new file mode 100644
index 0000000000000000000000000000000000000000..69c815f2780f8d35c8181be3e7052e6820733f07
--- /dev/null
+++ b/.github/templates/reprepro/conf/options
@@ -0,0 +1,5 @@
+# SPDX-License-Identifier: 0BSD
+# SPDX-FileCopyrightText: 2023 Linutronix GmbH
+
+verbose
+ask-passphrase
diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3132badf90ee3bc066080a4d6858ce592e0d7f71
--- /dev/null
+++ b/.github/workflows/package.yml
@@ -0,0 +1,88 @@
+# SPDX-License-Identifier: GPL-3.0-or-later
+# SPDX-FileCopyrightText: 2025 Linutronix GmbH
+
+name: "Package build"
+
+on:
+  workflow_dispatch:
+  push:
+  pull_request:
+
+jobs:
+  stable:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout at v3
+
+    - name: Build E.L.B.E. Debian stable packages
+      uses: jtdor/build-deb-action at v1
+      with:
+        docker-image: debian:stable
+        artifacts-dir: stable
+
+    - name: Retrieve results
+      if: ${{ always() }}
+      uses: actions/upload-artifact at v4
+      with:
+        name: stable
+        path: |
+          stable/
+        if-no-files-found: warn
+
+  unstable:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout at v3
+
+    - name: Build E.L.B.E. Debian stable packages
+      uses: jtdor/build-deb-action at v1
+      with:
+        docker-image: debian:unstable
+        artifacts-dir: unstable
+
+    - name: Retrieve results
+      if: ${{ always() }}
+      uses: actions/upload-artifact at v4
+      with:
+        name: unstable
+        path: |
+          unstable/
+        if-no-files-found: warn
+
+  ubuntu:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout at v3
+
+    - name: Install tools
+      run: sudo apt-get install -y config-package-dev devscripts git-buildpackage reprepro
+
+    - name: Create build environment
+      run: ARCH="$(dpkg-architecture -q DEB_BUILD_ARCH)" DIST="$(. /etc/os-release; echo ${VERSION_CODENAME/*, /})" git-pbuilder create
+
+    - name: Build E.L.B.E. packages
+      run: gbp buildpackage -nc --git-debian-branch="$(git branch --show-current)" --git-pbuilder --git-dist="$(. /etc/os-release; echo ${VERSION_CODENAME/*, /})" --git-arch="$(dpkg-architecture -q DEB_BUILD_ARCH)"
+
+    - name: Build Repo
+      run: ./.github/scripts/setup_repo.sh
+
+    - name: Retrieve results
+      if: ${{ always() }}
+      uses: actions/upload-artifact at v4
+      with:
+        name: repo
+        path: |
+          repo/
+        if-no-files-found: warn
+
+    - name: Prepare to use Repo
+      run: sudo ./.github/scripts/update_sources_list.sh
+
+    - name: Install E.L.B.E.
+      run: sudo apt-get install -y elbe
+
+    - name: Show E.L.B.E. version
+      run: elbe --version
+
+    - name: Install all E.L.B.E. packages
+      run: sudo ./.github/scripts/install_all.sh

-- 
2.48.1



More information about the elbe-devel mailing list