From 47d469809899296a65a990175bebb2da2120d20b Mon Sep 17 00:00:00 2001 From: cat Date: Tue, 6 Jan 2026 21:20:10 +0200 Subject: [PATCH] Testing void linux container --- .gitea/workflows/compile-voidlinux.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/compile-voidlinux.yml diff --git a/.gitea/workflows/compile-voidlinux.yml b/.gitea/workflows/compile-voidlinux.yml new file mode 100644 index 0000000..09cbf5c --- /dev/null +++ b/.gitea/workflows/compile-voidlinux.yml @@ -0,0 +1,20 @@ +name: Compile +run-name: Compiling the software +on: [push] + +jobs: + Compile: + runs-on: ubuntu-latest + container: + image: ghcr.io/void-linux/void-glibc-full:20260101r1 + steps: + - name: Install dependencies + run: | + xbps-install -Syu + xbps-install -y gcc git make nodejs + - name: Checkout repository + uses: actions/checkout@v3 + - name: Compile software + run: g++ main.cpp -o program + - name: Execute program + run: ./program