wanderer
cd791c4298
All checks were successful
continuous-integration/drone/push Build is passing
chore: notifications don't need to run on PR let's say fix: fine-tuning the limits chore: also run notification pipeline on any branch fix: further limit pipeline execution fix: limit deploy step execution for master * run notifications on PR and any branch chore: add utilization status badges + style Co-authored-by: surtur <a_mirre@utb.cz> Reviewed-on: #6
164 lines
3.6 KiB
YAML
164 lines
3.6 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: pull
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: fedora-hugo
|
|
pull: always
|
|
image: immawanderer/fedora-hugo:latest
|
|
commands:
|
|
- uname -r
|
|
- cat /etc/fedora-release
|
|
|
|
- name: alpine-rsync
|
|
pull: always
|
|
image: immawanderer/alpine-rsync:latest
|
|
commands:
|
|
- uname -r
|
|
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: 'build and deploy'
|
|
|
|
depends_on:
|
|
- pull
|
|
|
|
steps:
|
|
- name: hugo-extended
|
|
pull: if-not-exists
|
|
image: immawanderer/fedora-hugo:latest
|
|
when:
|
|
status:
|
|
- success
|
|
commands:
|
|
- git submodule init
|
|
- git submodule update
|
|
- hugo version
|
|
- hugo --gc=true --minify
|
|
|
|
- name: deploy
|
|
pull: if-not-exists
|
|
image: immawanderer/alpine-rsync:latest
|
|
when:
|
|
status:
|
|
- success
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
- tag
|
|
- cron
|
|
depends_on:
|
|
- hugo-extended
|
|
environment:
|
|
OL:
|
|
from_secret: hugo_user
|
|
OL_P:
|
|
from_secret: hugo_passwd
|
|
OL_D:
|
|
from_secret: hugo_dir
|
|
commands:
|
|
- echo $OL_P > nupass
|
|
- export RSYNC_RSH='sshpass -f ./nupass ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null'
|
|
- rsync -av --delete --chown $OL public/ $OL@dotya.ml:$OL_D
|
|
|
|
|
|
---
|
|
kind: pipeline
|
|
name: notifications
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
- "*"
|
|
event:
|
|
- push
|
|
- tag
|
|
status:
|
|
- success
|
|
- failure
|
|
|
|
depends_on:
|
|
- 'build and deploy'
|
|
|
|
steps:
|
|
- name: discord
|
|
pull: if-not-exists
|
|
image: appleboy/drone-discord:latest
|
|
settings:
|
|
message: >
|
|
{{#success build.status}}
|
|
✅ [Build #{{build.number}}]({{build.link}}) of `{{repo.name}}` has been successfully deployed.
|
|
event: **`{{build.event}}`**
|
|
commit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}}`
|
|
{{else}}
|
|
❌ [Build #{{build.number}}]({{build.link}}) of `{{repo.name}}` failed to deploy.
|
|
event: **`${DRONE_BUILD_EVENT}`**
|
|
failed stage(s): **`${DRONE_FAILED_STAGES}`**
|
|
commit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}}`
|
|
```{{commit.message}}```
|
|
{{/success}}
|
|
webhook_id:
|
|
from_secret: discord_webhook_id
|
|
webhook_token:
|
|
from_secret: discord_webhook_token
|
|
|
|
---
|
|
kind: pipeline
|
|
name: notifications-cron
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
trigger:
|
|
event:
|
|
- cron
|
|
cron:
|
|
- hourly
|
|
- hourly-build
|
|
status:
|
|
- success
|
|
- failure
|
|
|
|
depends_on:
|
|
- 'build and deploy'
|
|
|
|
steps:
|
|
- name: discord
|
|
pull: always
|
|
image: appleboy/drone-discord:latest
|
|
settings:
|
|
message: >
|
|
{{#success build.status}}
|
|
✅ [Hourly build #{{build.number}}]({{build.link}}) of `{{repo.name}}` has been successfully deployed.
|
|
event: **`{{build.event}}`**
|
|
commit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}}`
|
|
{{else}}
|
|
❌ [Hourly build #{{build.number}}]({{build.link}}) of `{{repo.name}}` failed to deploy.
|
|
event: **`${DRONE_BUILD_EVENT}`**
|
|
failed stage(s): **`${DRONE_FAILED_STAGES}`**
|
|
commit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}}`
|
|
```{{commit.message}}```
|
|
{{/success}}
|
|
webhook_id:
|
|
from_secret: discord_webhook_hourly_id
|
|
webhook_token:
|
|
from_secret: discord_webhook_hourly_token
|