22 lines
250 B
YAML
22 lines
250 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: exec docker test
|
|
|
|
steps:
|
|
- name: test
|
|
image: hello-world
|
|
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: exec runner test
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: test
|
|
commands:
|
|
- nix shell 'nixpkgs#hello' -c hello
|
|
...
|