dot-files/.drone.yml
Bruno BELANYI 675f9d82a6 [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.
2020-12-12 14:12:42 +01:00

14 lines
292 B
YAML

---
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