pikaur_builder/.drone.yml

232 lines
4.3 KiB
YAML

---
kind: pipeline
type: docker
name: electron-ozone
platform:
os: linux
arch: amd64
workspace:
path: /drone
steps:
- name: cache-init_electron-ozone
pull: if-not-exists
image: leophys/pikaur:0.2
user: root
commands:
- |
if ! [ "$(ls -A /cache_stage/lib)" ]; then
cp -r /var/lib/pacman/. /cache_stage/lib/
fi
- |
if ! [ "$(ls -A /cache_stage/cache)" ]; then
cp -r /var/cache/pacman/. /cache_stage/cache/
fi
volumes:
- name: lib_electron-ozone
path: /cache_stage/lib
- name: cache_electron-ozone
path: /cache_stage/cache
- name: build_electron-ozone
pull: if-not-exists
image: leophys/pikaur:0.2
commands:
- /usr/bin/pikaur -Sy --noconfirm electron-ozone
volumes:
- name: build_electron-ozone
path: /build
- name: lib_electron-ozone
path: /var/lib/pacman2
- name: cache_electron-ozone
path: /var/cache/pacman2
volumes:
- name: build_electron-ozone
host:
path: /var/builds/archlinux/electron-ozone
- name: lib_electron-ozone
host:
path: /var/builds/archlinux/lib/electron-ozone
- name: cache_electron-ozone
host:
path: /var/builds/archlinux/cache/electron-ozone
trigger:
branch:
- master
event:
- push
- cron
---
kind: pipeline
type: docker
name: notify_failure-electron-ozone
clone:
disable: true
steps:
- name: notify_failure
pull: if-not-exists
image: leophys/mailer:0.5
environment:
M_SERVER_ADDRESS:
from_secret: m_server_address
M_USER:
from_secret: m_user
M_PASSWORD:
from_secret: m_password
M_FROM:
from_secret: m_from
M_TO:
from_secret: m_to
M_SUB: "[electron-ozone] FAILURE"
M_TEXT: "Failed building electron-ozone"
trigger:
status:
- failure
depends_on:
- electron-ozone
---
kind: pipeline
type: docker
name: discord_arch_electron
platform:
os: linux
arch: amd64
workspace:
path: /drone
steps:
- name: cache-init_discord_arch_electron
pull: if-not-exists
image: leophys/pikaur:0.2
user: root
commands:
- |
if ! [ "$(ls -A /cache_stage/lib)" ]; then
cp -r /var/lib/pacman/. /cache_stage/lib/
fi
- |
if ! [ "$(ls -A /cache_stage/cache)" ]; then
cp -r /var/cache/pacman/. /cache_stage/cache/
fi
volumes:
- name: lib_discord_arch_electron
path: /cache_stage/lib
- name: cache_discord_arch_electron
path: /cache_stage/cache
- name: build_discord_arch_electron
pull: if-not-exists
image: leophys/pikaur:0.2
commands:
- /usr/bin/pikaur -Sy --noconfirm discord_arch_electron
volumes:
- name: build_discord_arch_electron
path: /build
- name: lib_discord_arch_electron
path: /var/lib/pacman
- name: cache_discord_arch_electron
path: /var/cache/pacman
volumes:
- name: build_discord_arch_electron
host:
path: /var/builds/archlinux/discord_arch_electron
- name: lib_discord_arch_electron
host:
path: /var/builds/archlinux/lib/discord_arch_electron
- name: cache_discord_arch_electron
host:
path: /var/builds/archlinux/cache/discord_arch_electron
trigger:
branch:
- master
event:
- push
- cron
---
kind: pipeline
type: docker
name: notify_failure-discord_arch_electron
clone:
disable: true
steps:
- name: notify_failure
pull: if-not-exists
image: leophys/mailer:0.5
environment:
M_SERVER_ADDRESS:
from_secret: m_server_address
M_USER:
from_secret: m_user
M_PASSWORD:
from_secret: m_password
M_FROM:
from_secret: m_from
M_TO:
from_secret: m_to
M_SUB: "[discord_arch_electron] FAILURE"
M_TEXT: "Failed building discord_arch_electron"
trigger:
status:
- failure
depends_on:
- discord_arch_electron
---
kind: pipeline
type: docker
name: notify_success
clone:
disable: true
steps:
- name: notify_success
pull: if-not-exists
image: leophys/mailer:0.5
environment:
M_SERVER_ADDRESS:
from_secret: m_server_address
M_USER:
from_secret: m_user
M_PASSWORD:
from_secret: m_password
M_FROM:
from_secret: m_from
M_TO:
from_secret: m_to
M_SUB: "[archlinux] SUCCESS"
M_TEXT: "Success building archlinux packages"
trigger:
status:
- success
depends_on:
- electron-ozone
- discord_arch_electron
---
kind: signature
hmac: f561f3265148401e9353ad63c8b37b9c9c89ace33eacb437f65c18ca21387517
...