From 675f9d82a6101591cecd833293272cf5e7a118b9 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 21 Aug 2020 18:15:56 +0200 Subject: [PATCH] [ADD] Initial Drone CI It only verifies that I can link and unlink all the packages, and install the Vim plugins at the same time. --- .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..6dd1ff0 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +--- +kind: pipeline +name: verify linking + +steps: + - name: link & unlink + image: archlinux + pull: always + commands: + - pacman -Suy --noconfirm make git stow sudo vim tmux + - "echo 'root ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers" + - make link-all + - make unlink-all