32 Commits

Author SHA1 Message Date
63d79740ed fix: add --amend flag to docker manifest create
All checks were successful
Build SS14 Watchdog Server / build-arm64 (push) Successful in 1m1s
Build SS14 Watchdog Server / build-amd64 (push) Successful in 49s
Build SS14 Watchdog Server / create-manifest (push) Successful in 7s
The manifest already exists from previous builds, so --amend is needed
to update it with new architecture images.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 17:53:21 +01:00
Codex Agent
0651098b66 fix: disable provenance to fix multi-arch manifest creation
Some checks failed
Build SS14 Watchdog Server / build-amd64 (push) Failing after 32s
Build SS14 Watchdog Server / build-arm64 (push) Successful in 50s
Build SS14 Watchdog Server / create-manifest (push) Has been skipped
Buildx with provenance creates manifest lists even for single-platform
builds. This breaks `docker manifest create` which expects plain images.

Adding provenance: false ensures plain images are pushed, allowing
the manifest creation step to work correctly.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 09:16:10 +01:00
Codex Agent
d21b1e9877 ci: Add multi-arch manifest with :main tag
Some checks failed
Build SS14 Watchdog Server / build-amd64 (push) Successful in 2m47s
Build SS14 Watchdog Server / build-arm64 (push) Successful in 32m28s
Build SS14 Watchdog Server / create-manifest (push) Failing after 6s
- arm64 build pushes :main-arm64
- amd64 build pushes :main-amd64
- New create-manifest job combines into :main (auto-selects arch)
- Manifest job can run on any self-hosted runner

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 08:37:37 +01:00
Codex Agent
b9bbe80856 ci: Use :latest tag instead of :main
Some checks failed
Build SS14 Watchdog Server / build-amd64 (push) Successful in 53s
Build SS14 Watchdog Server / build-arm64 (push) Has been cancelled
- amd64: :latest and :sha-xxx
- arm64: :latest-arm64 and :sha-xxx-arm64

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 08:30:17 +01:00
Codex Agent
906d405e43 Refactor to LiamAEdwards watchdog approach
Some checks failed
Build SS14 Watchdog Server / build-amd64 (push) Successful in 3m31s
Build SS14 Watchdog Server / build-arm64 (push) Has been cancelled
- Dockerfile: Download server from wylab CDN at build time, build watchdog
- start.sh: Simplified to copy defaults and run watchdog
- appsettings.yml: Configure for wylab instance with CDN manifest
- main.yml: Simplified workflow with auto-tagging via metadata-action
- Delete update_build_metadata.py (no longer needed)

Based on: https://github.com/LiamAEdwards/SS14-Docker-Linux-Server

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 08:21:19 +01:00
1916037ff8 ci: Simplify workflow for watchdog build (no game source compilation)
Some checks failed
Build SS14 Watchdog Server / build-amd64 (push) Has been cancelled
Build SS14 Watchdog Server / build-arm64 (push) Has been cancelled
Main branch now builds watchdog-only image that auto-updates from CDN.
Dev branch retains the full game source build workflow.
2025-12-16 07:43:44 +01:00
Wylabb
29ec3bd03e Replace GHA cache with registry cache
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Successful in 6m10s
Build and publish wylab SS14 server / build-amd64 (push) Failing after 11m57s
Switch from type=gha to type=registry for Docker build caching.
Registry cache works with Gitea runners and stores cache layers
as special tags in the container registry.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 04:50:40 +01:00
Wylabb
3a0980b294 Remove incompatible GitHub Actions cache from workflow
Some checks failed
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
Build and publish wylab SS14 server / build-arm64 (push) Has been cancelled
Remove cache-from and cache-to settings using type=gha, which are
incompatible with Gitea runners. The build completes successfully
but fails when trying to export to the non-existent GHA cache service.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 04:49:33 +01:00
Wylabb
900969b9ef Fix amd64 runner to use Docker mode
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Successful in 14s
Build and publish wylab SS14 server / build-amd64 (push) Failing after 14m15s
Restore runs-on to [self-hosted, linux-amd64] which now maps to Docker
mode after updating the runner configuration. This fixes actions/checkout
compatibility while maintaining amd64 tagging.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 04:25:00 +01:00
Wylabb
f1229098af Switch amd64 job to Docker runner mode
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Successful in 14s
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
Change build-amd64 from host mode to ubuntu-latest Docker runner to
fix actions/checkout compatibility. The checkout action requires a
proper containerized environment that host mode doesn't provide.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 04:19:08 +01:00
Wylabb
2d7fbeb95a Fix checkout action compatibility with gitea-runner
Some checks failed
Build and publish wylab SS14 server / build-amd64 (push) Failing after 21s
Build and publish wylab SS14 server / build-arm64 (push) Successful in 22s
Downgrade actions/checkout from v4 to v3 to resolve MODULE_NOT_FOUND
errors in gitea-runner's act environment. The v4 action has known
compatibility issues with act's caching mechanism.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 03:59:42 +01:00
Codex Agent
7010841d75 Point runners to macos-arm64 and linux-amd64 labels
Some checks failed
Build and publish wylab SS14 server / build-amd64 (push) Failing after 8s
Build and publish wylab SS14 server / build-arm64 (push) Successful in 12s
2025-12-15 01:32:54 +01:00
Codex Agent
ad71315b41 Switch runner labels to lower-case arm64/x64
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Has been cancelled
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
2025-12-15 01:30:46 +01:00
Codex Agent
b4155b8c0a Adjust runner labels to self-hosted ARM64/X64
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Has been cancelled
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
2025-12-15 01:28:49 +01:00
Codex Agent
e0d3723507 Pin arm64/amd64 jobs to matching self-hosted runners
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Has been cancelled
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
2025-12-15 01:21:27 +01:00
Codex Agent
db3c67de58 Remove QEMU setup for amd64 job
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Successful in 21s
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
2025-12-15 01:06:10 +01:00
Codex Agent
61a392c4d3 Revert cache registry change
Some checks failed
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
Build and publish wylab SS14 server / build-arm64 (push) Has been cancelled
2025-12-15 01:02:08 +01:00
Codex Agent
d528323a9f Use registry cache for buildx
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Has been cancelled
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
2025-12-15 01:00:54 +01:00
Codex Agent
2a615a644a CI: split arm64 and amd64 jobs
Some checks failed
Build and publish wylab SS14 server / build-arm64 (push) Successful in 6m57s
Build and publish wylab SS14 server / build-amd64 (push) Has been cancelled
2025-12-15 00:31:53 +01:00
Codex Agent
3b0e3ae250 CI: force plain buildx progress for logging
Some checks failed
Build and publish wylab SS14 server / build-and-push-image (push) Has been cancelled
2025-12-15 00:18:48 +01:00
Codex Agent
8633363c22 CI: cache build artifacts and configs
Some checks failed
Build and publish wylab SS14 server / build-and-push-image (push) Has been cancelled
2025-12-14 23:33:08 +01:00
Codex Agent
59c193f954 CI: enable amd64 buildx with qemu
Some checks failed
Build and publish wylab SS14 server / build-and-push-image (push) Has been cancelled
2025-12-14 18:45:32 +01:00
Codex Agent
8a9aaefd2a CI: build/push linux/amd64 image
Some checks failed
Build and publish wylab SS14 server / build-and-push-image (push) Failing after 54s
2025-12-14 18:43:51 +01:00
Codex Agent
9ba94bb69f Restrict workflow to native arch
Some checks failed
Build and publish wylab SS14 server / build-and-push-image (push) Has been cancelled
2025-12-14 18:06:56 +01:00
Codex Agent
b74fc4298d Add buildx setup for workflow
Some checks failed
Build and publish wylab SS14 server / build-and-push-image (push) Has been cancelled
2025-12-14 17:20:26 +01:00
Codex Agent
54fe07621e Remove host mapping step from workflow
All checks were successful
Build and publish wylab SS14 server / build-and-push-image (push) Successful in 3m57s
2025-12-14 17:04:05 +01:00
Codex Agent
cd5890730a Use internal git host mapping 2025-12-14 09:31:15 +01:00
Codex Agent
842b643ecd Add git host mapping for CI 2025-12-14 09:30:09 +01:00
Codex Agent
627d147be2 Always rebuild docker image in CI 2025-12-14 09:23:41 +01:00
Codex Bot
ec1d063d83 Use lowercase registry image name 2025-12-14 08:27:04 +01:00
Codex Bot
0fc5da9fe0 Skip redundant Docker image builds 2025-12-14 08:09:18 +01:00
Liam A Edwards
d8feee01a0 Create main.yml 2023-10-08 17:53:36 +01:00