This repository has been archived on 2023-11-07. You can view files and clone it, but cannot push or open issues or pull requests.
rpmbuild/.drone.yml

94 lines
1.7 KiB
YAML
Raw Normal View History

2019-02-09 15:29:00 +01:00
---
kind: pipeline
2019-03-13 10:57:48 +01:00
name: linux-amd64
platform:
os: linux
2019-03-14 13:39:27 +01:00
arch: amd64
2019-03-13 10:57:48 +01:00
steps:
2019-03-14 13:39:27 +01:00
- name: dryrun
pull: always
image: plugins/docker:linux-amd64
settings:
dockerfile: docker/Dockerfile.linux.amd64
dry_run: true
password:
from_secret: docker_password
2019-03-18 13:46:03 +01:00
repo: xoxys/rpmbuild
2019-03-14 13:39:27 +01:00
tags: linux-amd64
username:
from_secret: docker_username
- name: publish
pull: always
image: plugins/docker:linux-amd64
settings:
auto_tag: true
auto_tag_suffix: linux-amd64
dockerfile: docker/Dockerfile.linux.amd64
password:
from_secret: docker_password
2019-03-18 13:46:03 +01:00
repo: xoxys/rpmbuild
2019-03-14 13:39:27 +01:00
username:
from_secret: docker_username
2019-03-18 13:46:03 +01:00
when:
branch:
- master
2019-03-14 13:39:27 +01:00
2019-03-14 13:54:36 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2019-03-18 13:46:03 +01:00
- name: manifest
pull: always
image: plugins/manifest
settings:
ignore_missing: true
password:
from_secret: docker_password
spec: docker/manifest.tmpl
username:
from_secret: docker_username
when:
branch:
- master
- name: microbadger
pull: always
image: plugins/webhook
settings:
urls:
from_secret: microbadger_url
- name: matrix
2019-03-18 13:46:03 +01:00
pull: always
image: plugins/matrix
2019-03-14 13:54:36 +01:00
settings:
homeserver: https://matrix.rknet.org
password:
from_secret: matrix_password
roomid: MtidqQXWWAtQcByBhH:rknet.org
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
username:
from_secret: matrix_username
when:
status:
- success
- failure
2019-03-18 13:46:03 +01:00
trigger:
status:
- success
- failure
2019-03-14 13:54:36 +01:00
depends_on:
2019-03-14 13:55:49 +01:00
- linux-amd64
2019-03-14 13:54:36 +01:00
2019-03-14 13:39:27 +01:00
...