24 lines
345 B
YAML
24 lines
345 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: nomad-nummer5
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
|
|
environment:
|
|
TARGET_HOST: "test.chaos"
|
|
|
|
steps:
|
|
- name: git log
|
|
image: cr.wks/debian-stable
|
|
commands:
|
|
- git diff-tree --no-commit-id --name-only HEAD -r
|
|
- name: test
|
|
image: alpine
|
|
commands:
|
|
- echo hello
|
|
- echo world
|
|
- echo $TARGET_HOST
|