From 20914eaade0c3d2a75c34a602ffc24ee852183be Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 24 Dec 2023 06:38:28 -0600 Subject: [PATCH] [nostalgia] Add Gitea action file --- .gitea/workflows/build.yaml | 19 +++++++++++++++++++ 1 file changed, 19 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 00000000..25898e4b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,19 @@ +name: Build +run-name: ${{ gitea.actor }} build and test +on: [push] + +jobs: + build: + runs-on: nostalgia + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - run: make purge configure-debug + - run: make build + - run: make test + - run: make purge configure-asan + - run: make build + - run: make test + - run: make purge configure-release + - run: make build + - run: make test