From 95778d77d52ac3e5df83ce3c15592ef673e83951 Mon Sep 17 00:00:00 2001 From: "J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F" Date: Tue, 10 Jan 2023 21:18:50 +0100 Subject: [PATCH] Added .drone requires image archlinux_build --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..1bfd77e --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: build + image: archlinux_build + pull: if-not-exists + commands: + - cmake . + - make -j + +