feat: refactor .drone.ml
All checks were successful
continuous-integration/drone/push Build is passing

* fixed wrong yaml indentation
* added 'type: docker' and 'os: linux' to every pipeline where applicable
* syntax should be as per https://github.com/drone/drone/blob/master/.drone.yml
This commit is contained in:
surtur 2021-01-14 01:50:48 +01:00
parent 1df356eeca
commit 6600bd115e
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -1,5 +1,6 @@
--- ---
kind: pipeline kind: pipeline
type: docker
name: dockerhub-build-trigger name: dockerhub-build-trigger
platform: platform:
@ -28,16 +29,17 @@ steps:
exclude: exclude:
- ref/tags/** - ref/tags/**
--- ---
kind: pipeline kind: pipeline
type: docker
name: kaniko-build name: kaniko-build
platform: platform:
os: linux
arch: amd64 arch: amd64
depends_on: depends_on:
- dockerhub-build-trigger - dockerhub-build-trigger
steps: steps:
- name: build - name: build
@ -47,9 +49,9 @@ steps:
dockerfile: Dockerfile dockerfile: Dockerfile
context: . context: .
--- ---
kind: pipeline kind: pipeline
type: docker
name: notifications name: notifications
platform: platform:
@ -59,31 +61,32 @@ platform:
clone: clone:
disable: true disable: true
steps:
- name: discord
pull: always
image: appleboy/drone-discord:1.2.4
settings:
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}}`\n```{{commit.message}}``` {{/success}}\n"
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
trigger: trigger:
branch: branch:
- master - master
event: event:
- push - push
status: status:
- success - success
- failure - failure
depends_on: depends_on:
- kaniko-build - kaniko-build
steps:
- name: discord
pull: always
image: appleboy/drone-discord:1.2.4
settings:
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}}`\n```{{commit.message}}``` {{/success}}\n"
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
--- ---
kind: pipeline kind: pipeline
type: docker
name: notifications-cronbuild name: notifications-cronbuild
platform: platform:
@ -93,27 +96,27 @@ platform:
clone: clone:
disable: true disable: true
steps:
- name: discord
pull: always
image: appleboy/drone-discord:1.2.4
settings:
message: "{{#success build.status}} ✅ [Nightly 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}} ❌ [Nightly 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}}` {{/success}}"
webhook_id:
from_secret: discord_webhook_hourly_id
webhook_token:
from_secret: discord_webhook_hourly_token
trigger: trigger:
branch: branch:
- master - master
event: event:
- cron - cron
cron: cron:
- nightly - nightly
status: status:
- success - success
- failure - failure
depends_on: depends_on:
- kaniko-build - kaniko-build
steps:
- name: discord
pull: always
image: appleboy/drone-discord:1.2.4
settings:
message: "{{#success build.status}} ✅ [Nightly 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}} ❌ [Nightly 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}}` {{/success}}"
webhook_id:
from_secret: discord_webhook_hourly_id
webhook_token:
from_secret: discord_webhook_hourly_token