From d1c35eb952a1382c638d6469a78b553eb56f3d35 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:54:59 +0100 Subject: [PATCH 1/4] 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 +... From 52b4d32b53c58af98acfadbd7f447ab70f43cbbf Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:57:28 +0100 Subject: [PATCH 2/4] ci: drone: test docker runner --- .drone.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.drone.yml b/.drone.yml index dce58a2..7e72028 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,4 +11,12 @@ steps: - name: test commands: - nix shell 'nixpkgs#hello' -c hello +--- +kind: piepline +type: docker +name: exec-docker-test + +steps: +- name: test + image: hello-world ... From 7834bcb15572291a782f00bccd7319e4712ea2c7 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:58:49 +0100 Subject: [PATCH 3/4] From 0ad03f5f80237c96763deb161e2359583f0cba14 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:57:28 +0100 Subject: [PATCH 4/4] ci: drone: test docker runner --- .drone.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..3b246c8 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,9 @@ +--- +kind: piepline +type: docker +name: exec-docker-test + +steps: +- name: test + image: hello-world +...