From d1c35eb952a1382c638d6469a78b553eb56f3d35 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:54:59 +0100 Subject: [PATCH] ci: drone: test exec runner --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml 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 +...