ci: executor probe on main (temporary)
Some checks failed
hello-executor-probe / default-image (push) Has been cancelled
hello-executor-probe / slim-python (push) Has been cancelled

This commit is contained in:
2026-06-09 15:45:17 +02:00
parent daf89ff8b9
commit 2884b809d0

View File

@@ -0,0 +1,23 @@
name: hello-executor-probe
on: [push, workflow_dispatch]
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)"
slim-python:
runs-on: eulernest
container: python:3.12-slim
steps:
- name: probe python 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)"