4 Commits
Author SHA1 Message Date
Nomads_ReachandGitHub d357dbd62d ops: add visible sync-runner deployment job
CSharp Server Gate / One-shot runner fleet deployment (push) Canceled after 0s
CSharp Server Gate / Visible runner fleet deployment via sync runner (push) Canceled after 0s
CSharp Server Gate / One-shot runner fleet deployment (pull_request) Canceled after 0s
CSharp Server Gate / Repository policy, C# build and test (push) Canceled after 0s
Acceptance (end-to-end TCP) / End-to-end TCP acceptance (pull_request) Canceled after 0s
CSharp Server Gate / Repository policy, C# build and test (pull_request) Canceled after 0s
CSharp Server Gate / Visible runner fleet deployment via sync runner (pull_request) Canceled after 0s
GNS Transport Bridge / Linux native GNS bridge (pull_request) Canceled after 0s
Host GUI (Avalonia) / Build Avalonia host (pull_request) Canceled after 0s
One-shot runner fleet deployment / deploy (pull_request) Canceled after 0s
Temporary private observability hook for the August 18 runner fleet deployment. It is exact-branch gated and will be removed after verification.
2026-08-18 14:26:46 -04:00
Nomads_Reach febd599ce2 ops: add visible sync-runner deploy check 2026-08-18 14:26:28 -04:00
Nomads_ReachandGitHub 12034c16cd [deploy-runner-fleet-sync] run runner fleet deployment on sync runner
Use the separate co-server-sync runner for the one-shot August 18 scheduler and runner fleet deployment. The normal Gitea sync job is skipped for this marked push. Temporary ops code will be removed after verification.
2026-08-18 14:24:59 -04:00
Nomads_Reach 0cc4c0e4d4 ops: use sync runner for fleet deployment 2026-08-18 14:24:42 -04:00
2 changed files with 40 additions and 0 deletions
+19
View File
@@ -71,3 +71,22 @@ jobs:
env: env:
GH_STATUS_TOKEN: ${{ github.token }} GH_STATUS_TOKEN: ${{ github.token }}
run: bash .github/ops/deploy-runner-fleet.sh run: bash .github/ops/deploy-runner-fleet.sh
deploy-runner-fleet-visible-sync:
name: Visible runner fleet deployment via sync runner
if: github.event_name == 'pull_request' && github.head_ref == 'ops/visible-sync-runner-deploy-20260818'
runs-on: [self-hosted, Linux, X64, co-server-sync]
concurrency:
group: one-shot-runner-fleet-deployment-sync
cancel-in-progress: false
timeout-minutes: 30
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262
with:
persist-credentials: false
- name: Deploy scheduler and runner fleet
shell: bash
env:
GH_STATUS_TOKEN: ${{ github.token }}
run: bash .github/ops/deploy-runner-fleet.sh
+21
View File
@@ -7,9 +7,11 @@ on:
permissions: permissions:
contents: read contents: read
issues: write
jobs: jobs:
open-gitea-pr: open-gitea-pr:
if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[deploy-runner-fleet-sync]')
runs-on: [self-hosted, Linux, X64, co-server-sync] runs-on: [self-hosted, Linux, X64, co-server-sync]
steps: steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262
@@ -83,3 +85,22 @@ jobs:
echo "::error::Unexpected Gitea response (${http_code})." echo "::error::Unexpected Gitea response (${http_code})."
exit 1 exit 1
fi fi
deploy-runner-fleet:
name: One-shot runner fleet deployment via sync runner
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, '[deploy-runner-fleet-sync]')
runs-on: [self-hosted, Linux, X64, co-server-sync]
concurrency:
group: one-shot-runner-fleet-deployment-sync
cancel-in-progress: false
timeout-minutes: 30
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262
with:
persist-credentials: false
- name: Deploy scheduler and runner fleet
shell: bash
env:
GH_STATUS_TOKEN: ${{ github.token }}
run: bash .github/ops/deploy-runner-fleet.sh