big drone update
This commit is contained in:
parent
5b5e1f2167
commit
27fab7155c
62
.drone.yml
62
.drone.yml
@ -1,8 +1,30 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: default
|
name: notify-pipeline-start
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: docker
|
- name: slack
|
||||||
|
image: plugins/slack
|
||||||
|
settings:
|
||||||
|
webhook:
|
||||||
|
from_secret: SLACK_WEBHOOK
|
||||||
|
link_names: true
|
||||||
|
template: >
|
||||||
|
{{#if build.pull }}
|
||||||
|
*Build started*: {{ repo.owner }}/{{ repo.name }} - <https://git.eeqj.de/{{ repo.owner }}/{{ repo.name }}/pull/{{ build.pull }}|Pull Request #{{ build.pull }}>
|
||||||
|
{{else}}
|
||||||
|
*Build started: {{ repo.owner }}/{{ repo.name }} - Build #{{ build.number }}* (type: `{{ build.event }}`)
|
||||||
|
{{/if}}
|
||||||
|
Commit: <https://git.eeqj.de/{{ repo.owner }}/{{ repo.name }}/commit/{{ build.commit }}|{{ truncate build.commit 8 }}>
|
||||||
|
Branch: <https://git.eeqj.de/{{ repo.owner }}/{{ repo.name }}/commits/{{ build.branch }}|{{ build.branch }}>
|
||||||
|
Author: {{ build.author }}
|
||||||
|
<{{ build.link }}|Visit build page ↗>
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: test-docker-build
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: test-docker-build
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
network_mode: bridge
|
network_mode: bridge
|
||||||
settings:
|
settings:
|
||||||
@ -11,7 +33,35 @@ steps:
|
|||||||
tags:
|
tags:
|
||||||
- ${DRONE_COMMIT_SHA}
|
- ${DRONE_COMMIT_SHA}
|
||||||
- ${DRONE_BRANCH}
|
- ${DRONE_BRANCH}
|
||||||
- name: send
|
|
||||||
image: plugins/webhook
|
|
||||||
settings:
|
---
|
||||||
urls: https://chat.sneak.cloud/hooks/5ojqjwe4stgamx8in8q3rtxnca
|
kind: pipeline
|
||||||
|
name: notify-pipeline-end
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: slack
|
||||||
|
image: plugins/slack
|
||||||
|
settings:
|
||||||
|
webhook:
|
||||||
|
from_secret: SLACK_WEBHOOK
|
||||||
|
link_names: true
|
||||||
|
template: >
|
||||||
|
{{#if build.pull }}
|
||||||
|
*{{#success build.status}}✔{{ else }}✘{{/success}} {{ uppercasefirst build.status }}*: {{ repo.owner }}/{{ repo.name }} - <https://git.eeqj.de/{{ repo.owner }}/{{ repo.name }}/pull/{{ build.pull }}|Pull Request #{{ build.pull }}>
|
||||||
|
{{else}}
|
||||||
|
*{{#success build.status}}✔{{ else }}✘{{/success}} {{ uppercasefirst build.status }}: {{ repo.owner }}/{{ repo.name }} - Build #{{ build.number }}* (type: `{{ build.event }}`)
|
||||||
|
{{/if}}
|
||||||
|
Commit: <https://git.eeqj.de/{{ repo.owner }}/{{ repo.name }}/commit/{{ build.commit }}|{{ truncate build.commit 8 }}>
|
||||||
|
Branch: <https://git.eeqj.de/{{ repo.owner }}/{{ repo.name }}/commits/{{ build.branch }}|{{ build.branch }}>
|
||||||
|
Author: {{ build.author }}
|
||||||
|
Duration: {{ since build.created }}
|
||||||
|
<{{ build.link }}|Visit build page ↗>
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- test-docker-build
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
status:
|
||||||
|
- success
|
||||||
|
- failure
|
||||||
|
Loading…
Reference in New Issue
Block a user