test-drone/.drone.yml
Bruno BELANYI 7ab265ff6c
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone: test exec runner
2021-02-16 15:05:36 +01:00

18 lines
225 B
YAML

---
kind: pipeline
type: docker
name: exec docker test
steps:
- name: test
image: hello-world
---
kind: pipeline
type: exec
name: exec runner test
steps:
- name: test
commands:
- nix shell 'nixpkgs#hello' -c hello
...