From d20369c6d588f3ba27034a388ce5910c46f91e3b Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:17:56 -0700 Subject: [PATCH 1/7] testing --- .gitea/workflows/test.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index f4a93fc..542b3a7 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,8 +1,6 @@ name: CI test -on: - push: - branches: [ main ] +on: [push] jobs: amd64: @@ -14,6 +12,18 @@ jobs: echo uname -m + - run: echo "πŸ”Ž The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + + - name: Check out repository code + uses: actions/checkout@v4 + + - run: echo "πŸ’‘ The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." + arm64: runs-on : [ ubuntu-24.04, arm64-builder ] steps: -- 2.51.2 From bb530c0d5e5fc2e225dd8c835ca53f6b2bd810a4 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:20:11 -0700 Subject: [PATCH 2/7] use correct variables --- .gitea/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 542b3a7..582187f 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -12,16 +12,16 @@ jobs: echo uname -m - - run: echo "πŸ”Ž The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - run: echo "πŸ”Ž The name of your branch is ${{ forgejo.ref }} and your repository is ${{ forgejo.repository }}." - name: Check out repository code uses: actions/checkout@v4 - - run: echo "πŸ’‘ The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "πŸ’‘ The ${{ forgejo.repository }} repository has been cloned to the runner." - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." - name: List files in the repository run: | - ls ${{ gitea.workspace }} + ls ${{ forgejo.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." arm64: -- 2.51.2 From 454dddf07f3e0fc746632edad725be8b71f32e15 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:25:41 -0700 Subject: [PATCH 3/7] use newer checkout --- .gitea/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 582187f..f6eeb13 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -15,7 +15,7 @@ jobs: - run: echo "πŸ”Ž The name of your branch is ${{ forgejo.ref }} and your repository is ${{ forgejo.repository }}." - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - run: echo "πŸ’‘ The ${{ forgejo.repository }} repository has been cloned to the runner." - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." @@ -25,7 +25,7 @@ jobs: - run: echo "🍏 This job's status is ${{ job.status }}." arm64: - runs-on : [ ubuntu-24.04, arm64-builder ] + runs-on: [ ubuntu-24.04, arm64-builder ] steps: - name: System Info run: | -- 2.51.2 From d83d57e34a723434f6c8991f3968de65b0150bf2 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:30:39 -0700 Subject: [PATCH 4/7] testing again: --- .gitea/workflows/test.yml | 44 ++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index f6eeb13..e5e0068 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,34 +1,44 @@ -name: CI test - -on: [push] +name: CI – Multi‑arch 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 - - run: echo "πŸ”Ž The name of your branch is ${{ forgejo.ref }} and your repository is ${{ forgejo.repository }}." - - - name: Check out repository code - uses: actions/checkout@v6 - - - run: echo "πŸ’‘ The ${{ forgejo.repository }} repository has been cloned to the runner." - - run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner." - - name: List files in the repository + - name: Show context run: | - ls ${{ forgejo.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." + echo "πŸ”Ž Branch: ${{ forgejo.ref }}" + echo "πŸ“¦ Repository: ${{ forgejo.repository }}" + echo "πŸ“‚ Workspace: ${{ forgejo.workspace }}" + + # ------------------------------------------------- + # Checkout the source tree (pure‑Go, no Node needed) + # ------------------------------------------------- + - 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 ] steps: - - name: System Info + - name: System info run: | cat /etc/os-release - echo uname -m + + - name: Checkout code + uses: actions/checkout@v6 + + - name: Job status + run: echo "βœ… ARM64 job finished with status ${{ job.status }}" -- 2.51.2 From d443c5a1fdee36930d25888119189414480dd548 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:31:24 -0700 Subject: [PATCH 5/7] testing again again --- .gitea/workflows/test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index e5e0068..a604569 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -20,9 +20,6 @@ jobs: echo "πŸ“¦ Repository: ${{ forgejo.repository }}" echo "πŸ“‚ Workspace: ${{ forgejo.workspace }}" - # ------------------------------------------------- - # Checkout the source tree (pure‑Go, no Node needed) - # ------------------------------------------------- - name: Checkout code uses: actions/checkout@v6 -- 2.51.2 From a974ea0bb75a630d73533860aa77ed0c0cdf8900 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:36:35 -0700 Subject: [PATCH 6/7] testing again again again --- .gitea/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index a604569..22c1944 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -20,6 +20,11 @@ jobs: echo "πŸ“¦ Repository: ${{ forgejo.repository }}" echo "πŸ“‚ Workspace: ${{ forgejo.workspace }}" + - name: Install Node.js + run: | + sudo apt-get update + sudo apt-get install -y nodejs npm + - name: Checkout code uses: actions/checkout@v6 @@ -34,6 +39,11 @@ jobs: cat /etc/os-release uname -m + - name: Install Node.js + run: | + sudo apt-get update + sudo apt-get install -y nodejs npm + - name: Checkout code uses: actions/checkout@v6 -- 2.51.2 From 57d994de4f5ab668efb07286bf6e8857990f7f6c Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 2 Feb 2026 12:37:26 -0700 Subject: [PATCH 7/7] testing again again again --- .gitea/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 22c1944..a461a03 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -22,8 +22,8 @@ jobs: - name: Install Node.js run: | - sudo apt-get update - sudo apt-get install -y nodejs npm + apt update + apt install -y nodejs npm - name: Checkout code uses: actions/checkout@v6 @@ -41,8 +41,8 @@ jobs: - name: Install Node.js run: | - sudo apt-get update - sudo apt-get install -y nodejs npm + apt update + apt install -y nodejs npm - name: Checkout code uses: actions/checkout@v6 -- 2.51.2