dot-files/.drone.yml
Bruno BELANYI c072d8eceb [ADD][CI] Full install testing
I use a second pipeline so that they could run in parallel when using
multiple runners
2020-12-12 14:12:42 +01:00

27 lines
603 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
---
kind: pipeline
name: verify install
steps:
- name: full install
image: oblique/archlinux-yay
pull: always
commands:
- "echo 'root ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
- ./bootstrap.sh --no-creds --no-lang --no-yay
- make YAY='sudo -u aur yay -S --noconfirm --needed'