From eb3c0583418a251501188f450f9709cbf1e686fc Mon Sep 17 00:00:00 2001 From: Evgeny Demchenko Date: Tue, 19 May 2026 02:12:38 +0100 Subject: [PATCH] =?UTF-8?q?ci:=20smoke=20test=20workflow=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20verify=20u4=20runner=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7?= =?UTF-8?q?=20VPN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/test-u4-runner.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/test-u4-runner.yml diff --git a/.gitea/workflows/test-u4-runner.yml b/.gitea/workflows/test-u4-runner.yml new file mode 100644 index 0000000..aa26f33 --- /dev/null +++ b/.gitea/workflows/test-u4-runner.yml @@ -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"