From 5550923170a65cb1f50da7c9163433509a25d542 Mon Sep 17 00:00:00 2001 From: Robear Selwans Date: Mon, 4 May 2026 23:07:12 +0300 Subject: [PATCH] Added gitea action to test compilation --- .gitea/workflows/build.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..9cb8305 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,25 @@ +name: Run tests +run-name: Running Tests +on: [push] + +jobs: + Run tests: + runs-on: ubuntu-latest + + container: + image: git.neosisyphus.com/evol3d/evol-testbed:latest + + steps: + - uses: actions/checkout@v4 + - name: Configure + run: meson setup build + + - name: Compile + run: meson compile -C build + + - name: Upload Meson Logs + if: always() + uses: christopherHX/gitea-upload-artifact@v4 + with: + name: meson-logs + path: build/meson-logs/