From 3ab2e31f15c2d0963704bd888a614bcc74c9345f Mon Sep 17 00:00:00 2001 From: Edward Wall Date: Fri, 4 Jul 2025 14:43:10 +0200 Subject: [PATCH] adds gitea action --- .gitea/workflows/action.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/action.yaml diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml new file mode 100644 index 0000000..cc88452 --- /dev/null +++ b/.gitea/workflows/action.yaml @@ -0,0 +1,14 @@ +name: Test And Build +on: [push] + +jobs: + Build: + runs-on: linepics + steps: + - name: checkout repo + uses: actions/checkout@v4 + with: + submodules: 'true' + - run: | + sed -i 's/ARCH_FILTER=.*/ARCH_FILTER=linux%/' Makefile + make install