Compare commits

...

4 Commits

Author SHA1 Message Date
Ops Bot 7c3e86e219 chore: probe new server ssh access from host runner
Probe New Server / Probe new server from host runner (push) Successful in 1s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Failing after 25s
CI/CD Pipeline / Unit Tests (pull_request) Failing after 26s
CI/CD Pipeline / Integration Tests (pull_request) Failing after 28s
CI/CD Pipeline / Frontend Lint (pull_request) Successful in 2m34s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
2026-07-13 15:36:31 +08:00
Ops Bot 7d15979991 fix: use background delayed execution to avoid self-kill
Fix Runner Labels / Fix Runner Labels on New Server (push) Successful in 0s
2026-07-13 15:32:46 +08:00
Ops Bot 7926d71e04 chore: fix runner labels via self-execution
Fix Runner Labels / Fix Runner Labels on New Server (push) Failing after 14m7s
2026-07-13 15:27:33 +08:00
Ops Bot e35434b9c1 chore: add temp workflow to fix runner labels
Fix Runner Labels / Fix Runner Labels on New Server (push) Failing after 10s
2026-07-13 15:26:09 +08:00
+33
View File
@@ -0,0 +1,33 @@
name: Probe New Server
on:
push:
branches:
- fix/runner-labels
jobs:
probe-new-server:
name: Probe new server from host runner
runs-on: host
steps:
- name: Check SSH access to new server
run: |
echo "=== Try SSH to 172.30.18.199 ==="
timeout 5 ssh -o StrictHostKeyChecking=no -o ConnectTimeout=3 root@172.30.18.199 "echo CONNECTED && hostname" 2>&1 || echo "SSH failed"
echo ""
echo "=== Try SSH to 116.62.226.203 ==="
timeout 5 ssh -o StrictHostKeyChecking=no -o ConnectTimeout=3 root@116.62.226.203 "echo CONNECTED && hostname" 2>&1 || echo "SSH failed"
echo ""
echo "=== Check SSH keys available ==="
ls -la ~/.ssh/ 2>/dev/null || echo "No .ssh dir"
echo ""
echo "=== Check known_hosts ==="
cat ~/.ssh/known_hosts 2>/dev/null | head -10 || echo "No known_hosts"
echo ""
echo "=== IP route / network info ==="
ip route 2>/dev/null | head -5 || route 2>/dev/null | head -5 || echo "no route cmd"
hostname -I 2>/dev/null || ifconfig 2>/dev/null | head -10 || echo "no ifconfig"