test-drone/.drone.yml

22 lines
250 B
YAML
Raw Normal View History

2021-02-16 14:57:28 +01:00
---
kind: pipeline
type: docker
name: exec docker test
steps:
- name: test
image: hello-world
2021-02-16 14:54:59 +01:00
---
kind: pipeline
type: exec
name: exec runner test
2021-02-16 15:23:47 +01:00
clone:
disable: true
2021-02-16 14:54:59 +01:00
steps:
- name: test
commands:
- nix shell 'nixpkgs#hello' -c hello
2021-02-16 14:57:28 +01:00
...