23 lines
381 B
YAML
23 lines
381 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: yogabook-test
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: hello-world
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "== YOGABOOK WORKER TEST =="
|
|
- echo "Hello from yogabook!"
|
|
- uname -a
|
|
- hostname
|
|
- echo "== TEST COMPLETE =="
|
|
when:
|
|
branch: test-yogabook
|
|
|
|
workflow:
|
|
labels:
|
|
gpu: nvidia940mx
|