2020-08-21 18:15:56 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-10-15 20:07:30 +02:00
|
|
|
name: default
|
2020-08-21 18:15:56 +02:00
|
|
|
|
|
|
|
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
|
2020-08-21 18:15:56 +02:00
|
|
|
- "echo 'root ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
|
|
|
|
- make link-all
|
|
|
|
- make unlink-all
|
2020-08-22 20:18:56 +02:00
|
|
|
|
|
|
|
- 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=''
|
2020-10-14 18:20:17 +02:00
|
|
|
|
|
|
|
- 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" ]
|