Compare commits

..

7 commits
main ... ci-fix

Author SHA1 Message Date
Aaron Honeycutt
57d994de4f testing again again again
Some checks failed
CI – Multi‑arch build & test / amd64 (pull_request) Failing after 2m39s
CI – Multi‑arch build & test / arm64 (pull_request) Failing after 3m53s
2026-02-02 12:37:26 -07:00
Aaron Honeycutt
a974ea0bb7 testing again again again
Some checks failed
CI – Multi‑arch build & test / arm64 (pull_request) Failing after 3s
CI – Multi‑arch build & test / amd64 (pull_request) Failing after 4s
2026-02-02 12:36:35 -07:00
Aaron Honeycutt
d443c5a1fd testing again again
Some checks failed
CI – Multi‑arch build & test / amd64 (pull_request) Failing after 4s
CI – Multi‑arch build & test / arm64 (pull_request) Failing after 16s
2026-02-02 12:31:24 -07:00
Aaron Honeycutt
d83d57e34a testing again: 2026-02-02 12:30:39 -07:00
Aaron Honeycutt
454dddf07f use newer checkout
Some checks failed
CI test / arm64 (push) Successful in 2s
CI test / amd64 (push) Failing after 4s
2026-02-02 12:25:41 -07:00
Aaron Honeycutt
bb530c0d5e use correct variables
Some checks failed
CI test / arm64 (push) Successful in 1s
CI test / amd64 (push) Failing after 4s
2026-02-02 12:20:11 -07:00
Aaron Honeycutt
d20369c6d5 testing
Some checks failed
CI test / amd64 (push) Failing after 0s
CI test / arm64 (push) Successful in 1s
2026-02-02 12:17:56 -07:00

View file

@ -1,24 +1,51 @@
name: CI test
name: CI Multiarch build & test
on:
push:
branches: [ main ]
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
amd64:
runs-on: [ ubuntu-24.04, amd64-builder ]
steps:
- name: System Info
- name: System info
run: |
cat /etc/os-release
echo
uname -m
- name: Show context
run: |
echo "🔎 Branch: ${{ forgejo.ref }}"
echo "📦 Repository: ${{ forgejo.repository }}"
echo "📂 Workspace: ${{ forgejo.workspace }}"
- name: Install Node.js
run: |
apt update
apt install -y nodejs npm
- name: Checkout code
uses: actions/checkout@v6
- name: Job status
run: echo "✅ AMD64 job finished with status ${{ job.status }}"
arm64:
runs-on : [ ubuntu-24.04, arm64-builder ]
runs-on: [ ubuntu-24.04, arm64-builder ]
steps:
- name: System Info
- name: System info
run: |
cat /etc/os-release
echo
uname -m
- name: Install Node.js
run: |
apt update
apt install -y nodejs npm
- name: Checkout code
uses: actions/checkout@v6
- name: Job status
run: echo "✅ ARM64 job finished with status ${{ job.status }}"