commit d1c35eb952a1382c638d6469a78b553eb56f3d35 Author: Bruno BELANYI Date: Tue Feb 16 14:54:59 2021 +0100 ci: drone: test exec runner diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..dce58a2 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: exec +name: exec-runner-test + +platform: + os: linux + arch: amd64 + +steps: +- name: test + commands: + - nix shell 'nixpkgs#hello' -c hello +...