Shaun Arman
73f9c3419d
ci: restrict test.yml to branch pushes only (not tags)
Test / rust-clippy (push) Successful in 7m32s
Test / rust-fmt-check (push) Failing after 13m17s
Test / rust-tests (push) Successful in 8m5s
Test / frontend-typecheck (push) Successful in 1m37s
Test / frontend-tests (push) Has been cancelled
Release / build-linux-arm64 (push) Has been cancelled
Release / build-linux-amd64 (push) Has been cancelled
Release / build-windows-amd64 (push) Has been cancelled
2026-03-29 18:56:00 -05:00
Shaun Arman
1271f51d1a
fix: use $GITHUB_REF_NAME env var instead of ${{ github.ref_name }} expression
...
Release / build-windows-amd64 (push) Waiting to run
Release / build-linux-amd64 (push) Has been cancelled
Release / build-linux-arm64 (push) Has been cancelled
Test / frontend-typecheck (push) Failing after 14m53s
Test / frontend-tests (push) Has been cancelled
Test / rust-fmt-check (push) Has been cancelled
Test / rust-clippy (push) Has been cancelled
Test / rust-tests (push) Has been cancelled
Gitea 1.22 expression evaluator rewrites github.ref_name to
format('{0}', github.ref_name) which produces '%!t(string=v0.1.0)'
instead of 'v0.1.0'. Use the pre-set shell env var directly.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 18:50:39 -05:00
Shaun Arman
661898ba91
ci: remove workflow_dispatch inputs (Gitea 1.22 rejects unknown on type)
Release / build-windows-amd64 (push) Waiting to run
Test / rust-fmt-check (push) Waiting to run
Test / rust-tests (push) Successful in 7m19s
Test / frontend-typecheck (push) Successful in 1m26s
Test / frontend-tests (push) Successful in 1m19s
Release / build-linux-arm64 (push) Failing after 14m12s
Test / rust-clippy (push) Failing after 17m54s
Release / build-linux-amd64 (push) Has been cancelled
2026-03-29 18:25:03 -05:00
Shaun Arman
8f18cfa3be
ci: restore quoted tag pattern 'v*' for Gitea 1.22 compatibility
Test / rust-fmt-check (push) Has been cancelled
Test / rust-tests (push) Has been cancelled
Test / frontend-typecheck (push) Has been cancelled
Test / frontend-tests (push) Has been cancelled
Test / rust-clippy (push) Has been cancelled
2026-03-29 18:19:47 -05:00
Shaun Arman
b817d2bed4
ci: add workflow_dispatch trigger and RELEASE_TAG env var
...
Test / rust-fmt-check (push) Waiting to run
Test / rust-clippy (push) Waiting to run
Test / rust-tests (push) Waiting to run
Test / frontend-typecheck (push) Waiting to run
Test / frontend-tests (push) Waiting to run
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 17:05:25 -05:00
Shaun Arman
02787361c8
ci: fix apt-get update missing before git install in checkout steps
...
Test / rust-fmt-check (push) Successful in 33s
Test / rust-clippy (push) Failing after 2m35s
Test / rust-tests (push) Successful in 3m23s
Test / frontend-tests (push) Successful in 46s
Test / frontend-typecheck (push) Failing after 2m14s
rust:1.88-slim has an empty package cache. apt-get install git
was failing with 'Unable to locate package git'.
Add apt-get update -qq before every apt-get install in checkout steps.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 16:07:17 -05:00
Shaun Arman
29b6fb2170
ci: fix checkout — replace actions/checkout@v4 with direct git clone
...
Test / rust-fmt-check (push) Failing after 2s
Test / rust-clippy (push) Failing after 2s
Test / frontend-typecheck (push) Has been cancelled
Test / rust-tests (push) Failing after 2s
Test / frontend-tests (push) Failing after 3s
actions/checkout@v4 requires Node.js which is not in rust:1.88-slim.
Replace with direct git init+fetch+checkout using the Gitea instance URL.
Also fix release.yml: each build job creates the release (idempotent)
and uploads its own artifacts inline via Gitea API.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 15:52:53 -05:00
Shaun Arman
9880afa117
ci: migrate from Woodpecker to Gitea Actions
...
Test / rust-fmt-check (push) Waiting to run
Test / rust-clippy (push) Waiting to run
Test / rust-tests (push) Waiting to run
Test / frontend-typecheck (push) Waiting to run
Test / frontend-tests (push) Waiting to run
Replaces .woodpecker/*.yml with Gitea Actions workflows:
- .gitea/workflows/test.yml: triggers on push/PR, runs 5 jobs
(rust-fmt-check, rust-clippy, rust-tests, frontend-typecheck,
frontend-tests) using rust:1.88-slim and node:22-alpine containers.
- .gitea/workflows/release.yml: triggers on v* tags, 4 jobs:
- build-linux-amd64 (linux-amd64 runner, cross-compile x86_64)
- build-windows-amd64 (linux-amd64 runner, mingw cross-compile)
- build-linux-arm64 (linux-arm64 runner, native aarch64)
- upload-release (runs after all 3 build jobs, uses
actions/download-artifact + Gitea release API)
Runners registered:
- amd64-docker-runner (Docker, 172.0.0.29, labels: ubuntu-latest linux-amd64)
- arm64-native-runner (systemd, local arm64 machine, label: linux-arm64)
Secrets: RELEASE_TOKEN set in repo Actions secrets.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 14:50:48 -05:00