From 7834bcb15572291a782f00bccd7319e4712ea2c7 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:58:49 +0100 Subject: [PATCH 1/4] From 0ad03f5f80237c96763deb161e2359583f0cba14 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 | 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 +... From 5909c4caa20819c8ab176f4628516344e7b6b67c Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 16 Feb 2021 14:54:59 +0100 Subject: [PATCH 3/4] ci: drone: test exec runner --- .drone.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.drone.yml b/.drone.yml index 3b246c8..f516f99 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,4 +6,9 @@ name: exec-docker-test steps: - name: test image: hello-world +--- +steps: +- name: test + commands: + - nix shell 'nixpkgs#hello' -c hello ... From c510baaa365398003dd73897e44b33cf3c3fd2d7 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..e30515b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,9 @@ +--- +kind: pipeline +type: docker +name: exec docker test + +steps: +- name: test + image: hello-world +...