Commit Graph
108 Commits
Author SHA1 Message Date
NomadsReach 1f01e68794 Add Avalonia server-host launcher (MVP scaffold)
Cross-platform C# GUI to replace the Qt/C++ Host GUI, on the same dotnet
toolchain as the server. MVP: load/save commonwealth-server.json, Start/Stop
the CommonwealthOnline.Server process (published exe, then dll, then source
run), and stream its output to a live log. Themed to the Commonwealth Online
brand (near-black + amber). Builds clean on net8.0.

Next: player list + kick/ban via the admin port, then retire the Qt host.
2026-08-16 18:15:40 -04:00
NomadsReach 6861fa4276 Print the co_gns_server_create failure reason in the bridge test
The bare assert hid why server creation fails on the CI runner. Emit the
error buffer to stderr before asserting so the cause is visible in logs.
2026-08-16 17:51:49 -04:00
NomadsReach f1a7876770 Move DOTNET_INSTALL_DIR to step scope (runner context invalid at job env)
The job-level env used runner.tool_cache, which isn't available until a
runner is assigned, so the workflow failed to parse. Set it on the
setup-dotnet step, where the runner context is valid.
2026-08-16 17:46:35 -04:00
NomadsReach 9c4580daaf Install the pinned .NET SDK to a runner-writable dir on self-hosted CI
setup-dotnet defaulted to /usr/share/dotnet, which the runner user cannot
write to (Permission denied). Point DOTNET_INSTALL_DIR at runner.tool_cache
so the 8.0 SDK installs into a writable, cached location.
2026-08-16 17:43:16 -04:00
NomadsReach 48ee0da01f Fix C# gate: compile error, validator int handling, policy hits, GNS deps
- GnsTransport.cs: drop the illegal fixed statement on native.Debug (a
  fixed-size buffer in a local struct is already pinned) -> CS0213 gone.
- ProtocolCore.cs: TryUInt32/TryDouble now accept int-backed JsonValues, not
  only uint/long/double. Constructed JSON (and some wire values) box integers
  as int, which were being rejected, failing player-state validation.
- MainWindow.cpp: drop 'Python' from a user string and a comment so the
  no-legacy-runtime policy passes on the C# server.
- gns-transport.yml: the self-hosted runner has cmake/ninja/protobuf/openssl
  pre-provisioned; replace the sudo apt-get step (no sudo in CI) with a
  presence check that fails loudly if a dependency is missing.

Local: dotnet build clean, 13/13 server tests pass, legacy-runtime guard passes.
2026-08-16 17:40:31 -04:00
NomadsReach ff5c6d883a Run the GNS bridge job on the self-hosted runner instead of GitHub-hosted
The ubuntu-latest job cannot start while GitHub-hosted minutes are
billing-blocked. Target the self-hosted Linux x64 runner, matching the
rest of the CI (csharp-server.yml, CO-BETA/beta-ci.yml).
2026-08-16 16:51:10 -04:00
Nomads_Reach 5e8df12b70 Run runtime policy first on self-hosted gate 2026-08-16 02:58:42 -04:00
Nomads_Reach 512f8717ea Run legacy runtime guard on every push and PR 2026-08-16 02:58:01 -04:00
Nomads_Reach 7267782084 Centralize legacy runtime checks in Linux validation 2026-08-16 02:57:42 -04:00
Nomads_Reach 6282323b12 Reject prohibited artifacts during CMake staging 2026-08-16 02:57:34 -04:00
Nomads_Reach 1fbfc3a51b Strengthen packaged server artifact checks 2026-08-16 02:57:12 -04:00
Nomads_Reach a788b5c076 Remove legacy runtime wording from Windows build 2026-08-16 02:57:00 -04:00
Nomads_Reach 6eee5354ea Remove legacy runtime wording from deployment docs 2026-08-16 02:56:47 -04:00
Nomads_Reach e9e4d79e62 Remove legacy runtime references from server docs 2026-08-16 02:56:40 -04:00
Nomads_Reach 4e942dfb6f Remove legacy runtime references from root docs 2026-08-16 02:56:28 -04:00
Nomads_Reach 14e9d439e3 Add repository legacy runtime guard 2026-08-16 02:56:18 -04:00
Nomads_Reach 6e2db7934c Fix C# test restore in Linux checks 2026-08-16 02:39:01 -04:00
Nomads_Reach 55b9c178b3 Fix C# test restore in Windows build 2026-08-16 02:38:52 -04:00
Nomads_Reach 377fe2754b Fix C# test restore in CI 2026-08-16 02:38:42 -04:00
Nomads_Reach 757e614cdd Complete C# server cutover 2026-08-16 02:36:32 -04:00
Nomads_Reach ddadf87423 Add C# dedicated server replacement 2026-08-16 02:23:04 -04:00
Nomads_Reach 0024436ce8 Test GNS-aware dedicated server config handoff 2026-08-16 01:06:55 -04:00
Nomads_Reach ad18858551 Add GNS-aware dedicated server entrypoint 2026-08-16 01:06:46 -04:00
Nomads_Reach 3d73d51331 Use transport-aware server entrypoint 2026-08-16 00:58:15 -04:00
Nomads_Reach 535fd40770 Gate GNS config persistence 2026-08-16 00:50:30 -04:00
Nomads_Reach f478db83ec Document opt-in GNS server config 2026-08-16 00:49:38 -04:00
Nomads_Reach dd6f47c61b Test GNS config persistence and validation 2026-08-16 00:49:24 -04:00
Nomads_Reach d24e8c58e3 Persist GNS transport configuration 2026-08-16 00:49:10 -04:00
Nomads_Reach 2f4ddaaa26 Gate ServerService GNS lifecycle 2026-08-16 00:46:50 -04:00
Nomads_Reach 298110f589 Test ServerService GNS lifecycle 2026-08-16 00:46:31 -04:00
Nomads_Reach 86ec79eeb9 Add opt-in GNS host transport 2026-08-16 00:46:15 -04:00
Nomads_Reach 974113bf43 Gate transport-neutral authoritative server 2026-08-16 00:45:16 -04:00
Nomads_Reach 2f38c5b633 Exercise transport-neutral GNS server path 2026-08-16 00:45:02 -04:00
Nomads_Reach 99b242eee6 Send GNS packets without TCP framing 2026-08-16 00:44:34 -04:00
Nomads_Reach 94487f57ca Test transport-aware server send boundary 2026-08-16 00:43:56 -04:00
Nomads_Reach fcbf66a821 Add transport-aware authoritative server 2026-08-16 00:43:45 -04:00
Nomads_Reach 240c3e9a86 Add transport-neutral client send boundary 2026-08-16 00:43:31 -04:00
Nomads_Reach 759ecd510f Gate GNS snapshot sequencing 2026-08-16 00:37:07 -04:00
Nomads_Reach 2493ce5f30 Test sequenced GNS gameplay snapshots 2026-08-16 00:36:52 -04:00
Nomads_Reach 39750a72ee Enforce sequenced GNS snapshots 2026-08-16 00:35:21 -04:00
Nomads_Reach a181794369 Test GNS snapshot envelope 2026-08-16 00:34:34 -04:00
Nomads_Reach ee73c731b0 Add GNS snapshot sequence envelope 2026-08-16 00:34:21 -04:00
Nomads_Reach d822baee21 Add self-hosted Networking V2 gate 2026-08-16 00:33:20 -04:00
Nomads_Reach e359984468 Test GNS reliable send failure handling 2026-08-16 00:31:48 -04:00
Nomads_Reach b8451d2260 Harden GNS gameplay reliability handling 2026-08-16 00:31:28 -04:00
Nomads_Reach 4a70c0a963 Test GNS gameplay adapter integration 2026-08-16 00:30:49 -04:00
Nomads_Reach f158619670 Add GNS gameplay adapter 2026-08-16 00:30:19 -04:00
Nomads_Reach c0caeca254 Run all native GNS bridge tests 2026-08-16 00:29:05 -04:00
Nomads_Reach 5d840b3000 Run native endpoint security test 2026-08-16 00:28:52 -04:00
Nomads_Reach 69c8e1e198 Test GNS remote endpoint query 2026-08-16 00:28:42 -04:00