2026-06-23 17:09:42 +02:00
|
|
|
# Test pipeline for yogabook worker verification
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: docker
|
|
|
|
|
name: yogabook-test
|
2026-06-21 17:48:52 +02:00
|
|
|
|
2026-06-23 17:09:42 +02:00
|
|
|
platform:
|
|
|
|
|
os: linux
|
|
|
|
|
arch: amd64
|
2026-06-23 15:09:54 +02:00
|
|
|
|
|
|
|
|
steps:
|
2026-06-23 17:09:42 +02:00
|
|
|
- name: hello-world
|
|
|
|
|
image: alpine:latest
|
|
|
|
|
commands:
|
|
|
|
|
- echo "=== YOGABOOK WORKER TEST ==="
|
|
|
|
|
- echo "Hello from yogabook!"
|
|
|
|
|
- uname -a
|
|
|
|
|
- echo "=== TEST COMPLETE ==="
|
|
|
|
|
when:
|
|
|
|
|
branch: test-yogabook
|