PJC-0x03/.drone.yml

86 lines
2.3 KiB
YAML
Raw Normal View History

2020-03-05 13:35:46 +01:00
---
kind: pipeline
name: testing-amd64
platform:
arch: amd64
steps:
- name: build
pull: always
image: immawanderer/archlinux-cdev:latest
2020-03-05 13:35:46 +01:00
commands:
- cmake CMakeLists.txt
- make
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
clone:
disable: true
trigger:
branch:
2020-04-17 14:59:51 +02:00
- master
- "release/*"
2020-03-05 13:35:46 +01:00
event:
2020-04-17 14:59:51 +02:00
- push
- tag
2020-03-05 13:35:46 +01:00
status:
2020-04-17 14:59:51 +02:00
- success
- failure
2020-03-05 13:35:46 +01:00
depends_on:
- testing-amd64
steps:
- name: discord
pull: always
image: appleboy/drone-discord:1.2.4
settings:
2020-04-17 15:05:18 +02:00
message: "{{#success build.status}} ✅ [Build #{{build.number}}]({{build.link}}) of `{{repo.name}}` succeeded.\nevent: **`{{build.event}}`**\ncommit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}}`\n```{{commit.message}}``` {{else}} ❌ [Build #{{build.number}}]({{build.link}}) of `{{repo.name}}` failed.\nevent: **`${DRONE_BUILD_EVENT}`**\ncommit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}} on `{{commit.branch}}`\n```{{commit.message}}``` {{/success}}"
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
2020-03-05 13:35:46 +01:00
---
kind: pipeline
name: notifications-cronbuild
platform:
os: linux
arch: amd64
clone:
disable: true
trigger:
event:
2020-04-19 15:25:53 +02:00
- cron
2020-03-05 13:35:46 +01:00
cron:
2020-04-19 15:25:53 +02:00
- hourly-build
2020-03-05 13:35:46 +01:00
status:
2020-04-19 15:25:53 +02:00
- success
- failure
2020-03-05 13:35:46 +01:00
depends_on:
- testing-amd64
steps:
- name: discord
pull: always
image: appleboy/drone-discord:1.2.4
settings:
2020-04-17 15:05:18 +02:00
message: "{{#success build.status}} ✅ [Hourly build #{{build.number}}]({{build.link}}) of `{{repo.name}}` succeeded.\nevent: **`{{build.event}}`**\ncommit [`${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.\nevent: **`${DRONE_BUILD_EVENT}`**\ncommit [`${DRONE_COMMIT_SHA:0:7}`](https://git.dotya.ml/${DRONE_REPO}/commit/${DRONE_COMMIT_SHA}) by {{commit.author}} on `{{commit.branch}} on `{{commit.branch}}`{{/success}}"
webhook_id:
from_secret: discord_webhook_hourly_id
webhook_token:
from_secret: discord_webhook_hourly_token