test-drone/.drone.yml
Bruno BELANYI f69c884609
Some checks failed
continuous-integration/drone/push Build is failing
ci: drone: do not clone on exec runner
2021-02-16 15:23:47 +01:00

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
...