From 359225e4648a593e74e5893b83a2c92d7f2417f9 Mon Sep 17 00:00:00 2001 From: knacky Date: Fri, 22 May 2026 19:49:26 +0200 Subject: [PATCH] chore(ci): drop transient smoke workflow now that runner is validated The smoke workflow was scoped from inception to validate that the freshly registered gitea-runner picks up jobs with the "linux" label. It ran green on push of chore/podman-and-ci. Removing per the "transient, removed after validation" plan recorded in the original commit (1380672). --- .gitea/workflows/smoke.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .gitea/workflows/smoke.yml diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml deleted file mode 100644 index 4d91c86..0000000 --- a/.gitea/workflows/smoke.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: smoke -# Trivial workflow to validate the Gitea Actions runner pickup. -# Removed in a follow-up commit once green on chore/podman-and-ci. - -on: - push: - branches: - - chore/podman-and-ci - workflow_dispatch: - -jobs: - hello: - runs-on: linux - steps: - - name: kernel + identity - run: | - echo "host: $(uname -a)" - id - cat /etc/os-release | head -3 - - name: container runtime visible from job - run: | - which podman || which docker || echo "(no runtime visible — expected for nested rootless DooD)"