Update .gitea/workflows/ci.yml
Some checks failed
build / test-amd64 (push) Successful in 37s
build / test-arm64 (push) Has been cancelled

This commit is contained in:
Aaron Honeycutt 2025-12-10 19:03:11 -07:00
parent 5061a15550
commit b302b2ee6a

View file

@ -8,6 +8,13 @@ jobs:
test-amd64:
runs-on: [ubuntu-24.04, amd64-builder]
steps:
- name: Setup
run: |
apt update -y
apt install -y curl gnupg
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt install -y nodejs
- name: Checkout
uses: actions/checkout@v5
@ -20,6 +27,13 @@ jobs:
test-arm64:
runs-on: [ubuntu-24.04, arm64-builder]
steps:
- name: Setup
run: |
apt update -y
apt install -y curl gnupg
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt install -y nodejs
- name: Checkout
uses: actions/checkout@v5