From 82376d0b5a8241ab8c481cfd7bb6c9ad292979e6 Mon Sep 17 00:00:00 2001 From: Tarik Moussa Date: Tue, 9 Jun 2026 15:41:07 +0200 Subject: [PATCH] ci: temporary executor probe workflow --- .gitea/workflows/hello.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/hello.yml diff --git a/.gitea/workflows/hello.yml b/.gitea/workflows/hello.yml new file mode 100644 index 0000000..d465812 --- /dev/null +++ b/.gitea/workflows/hello.yml @@ -0,0 +1,26 @@ +name: hello-executor-probe +on: + push: + branches: [ci/hello] +jobs: + default-image: + runs-on: eulernest + steps: + - name: probe default image + run: | + echo "=== DEFAULT IMAGE (no container:) ===" + (. /etc/os-release 2>/dev/null && echo "os: $PRETTY_NAME") || echo "os: unknown" + echo "node: $(node --version 2>&1 || echo MISSING)" + echo "python3: $(python3 --version 2>&1 || echo MISSING)" + echo "git: $(git --version 2>&1 || echo MISSING)" + echo "whoami: $(whoami 2>&1)" + slim-python: + runs-on: eulernest + container: python:3.12-slim + steps: + - name: probe python:3.12-slim + run: | + echo "=== python:3.12-slim ===" + echo "python3: $(python3 --version 2>&1 || echo MISSING)" + echo "git: $(git --version 2>&1 || echo MISSING)" + echo "node: $(node --version 2>&1 || echo MISSING)"