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