From 5da6710b0c444294615cac0797f6b799b6db32df Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm Date: Mon, 15 Sep 2025 15:59:16 +0200 Subject: [PATCH] CI: setup gitea actions ci --- .gitea/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..c1f151d --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,16 @@ +name: Build eismuliplexer for linux +run-name: Building eismuliplexer for linux +on: [push] + +jobs: + Build: + runs-on: ubuntu-20.04 + steps: + - name: Install dependancies + run: apt update; apt install -y libusb-dev cmake + - name: Check out repository code + uses: ischanx/checkout@8c80eac3058d03dc5301629e8f7d59ae255d6cc3 + - name: Build + run: mkdir ${{ gitea.workspace }}/build; cd ${{ gitea.workspace }}/build; cmake ..; make + - name: List files in the build dir + run: ls