ci: smoke test workflow для verify u4 runner через VPN
test-u4-runner / u4 runner smoke test (push) Successful in 54s
build / cmake build (CUDA 12.4, Ubuntu 22.04) (push) Successful in 38m52s
build / ffmpeg filter patch (out-of-tree) (push) Failing after 1m34s

This commit is contained in:
2026-05-19 02:12:38 +01:00
parent 612843bd39
commit eb3c058341
+21
View File
@@ -0,0 +1,21 @@
name: test-u4-runner
on:
workflow_dispatch:
push:
paths:
- '.gitea/workflows/test-u4-runner.yml'
jobs:
hello:
name: u4 runner smoke test
runs-on: u4
container:
image: ubuntu:24.04
steps:
- name: hostname + uname
run: |
echo "hostname: $(hostname)"
echo "uname: $(uname -a)"
echo "ip route: $(ip route | head -3)"
echo "test OK"