dot-files/.drone.yml

35 lines
909 B
YAML
Raw Normal View History

---
kind: pipeline
2020-10-15 20:07:30 +02:00
name: default
steps:
- name: link & unlink
image: archlinux
pull: always
commands:
2020-10-05 18:28:39 +02:00
- pacman -Suy --noconfirm --needed make git stow sudo vim tmux emacs
- "echo 'root ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
- make link-all
- make unlink-all
- 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
2020-08-22 22:06:22 +02:00
- make YAY='sudo -u aur yay -S --noconfirm --needed' HASKELL_DEPENDENCIES=''
- name: notify
image: plugins/matrix
settings:
homeserver:
from_secret: matrix_homeserver
roomid:
from_secret: matrix_roomid
username:
from_secret: matrix_username
password:
from_secret: matrix_password
2020-10-15 20:07:30 +02:00
depends_on: [ "link & unlink", "full install" ]