From db4ce26c0c3f8761eebe7137904dc09882b93a35 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 18:06:10 -0700 Subject: [PATCH] Add .gitea/workflows/ci.yml add CI --- .gitea/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..028bd2f --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,22 @@ +name: build + +on: + push: + branches: [ main ] + +jobs: + test-amd64: + runs-on: [ubuntu-24.04, amd64-builder] + steps: + - name: Install rustup + run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + - name: Build + run: cargo build + + test-arm64: + runs-on: [ubuntu-24.04, arm64-builder] + steps: + - name: Install rustup + run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + name: Build + run: cargo build