From d971719c06f39a3087bc6a5d228f8ca8784bd7c5 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 18:06:55 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 028bd2f..abeefcd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,14 +9,14 @@ jobs: 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 + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + 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 + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + cargo build