servus/.gitea/workflows/ci.yml
ahoneybun 276a8ed3c4
Some checks failed
build / test-amd64 (push) Failing after 0s
build / test-arm64 (push) Failing after 2s
Update .gitea/workflows/ci.yml
install curl
2025-12-10 18:09:08 -07:00

24 lines
524 B
YAML

name: build
on:
push:
branches: [ main ]
jobs:
test-amd64:
runs-on: [ubuntu-24.04, amd64-builder]
steps:
- name: Install rustup
run: |
apt install curl
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: |
apt install curl
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
cargo build