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.jsonnet

101 lines
2.4 KiB
Plaintext
Raw Normal View History

2019-03-13 10:57:48 +01:00
local PipelineBuild(os='linux', arch='amd64') = {
local tag = os + '-' + arch,
local file_suffix = std.strReplace(tag, '-', '.'),
kind: "pipeline",
name: tag,
platform: {
os: os,
arch: arch,
},
steps: [
{
name: 'dryrun',
image: 'plugins/docker:' + tag,
pull: 'always',
settings: {
dry_run: true,
tags: tag,
dockerfile: 'docker/Dockerfile.' + file_suffix,
2019-03-18 13:46:03 +01:00
repo: ' xoxys/rpmbuild',
username: { from_secret: "docker_username" },
password: { from_secret: "docker_password" },
2019-03-13 10:57:48 +01:00
},
},
{
name: 'publish',
image: 'plugins/docker:' + tag,
pull: 'always',
settings: {
auto_tag: true,
auto_tag_suffix: tag,
dockerfile: 'docker/Dockerfile.' + file_suffix,
2019-03-18 13:46:03 +01:00
repo: ' xoxys/rpmbuild',
username: { from_secret: "docker_username" },
password: { from_secret: "docker_password" },
},
when: {
branch: [ "master" ],
2019-03-13 10:57:48 +01:00
},
},
],
};
2019-03-14 13:54:36 +01:00
local PipelineNotifications(depends_on=[]) = {
2019-03-13 10:57:48 +01:00
kind: "pipeline",
name: "notifications",
platform: {
os: "linux",
arch: "amd64",
},
steps: [
2019-03-18 13:46:03 +01:00
{
image: "plugins/manifest",
name: "manifest",
pull: "always",
settings: {
ignore_missing: true,
username: { from_secret: "docker_username" },
password: { from_secret: "docker_password" },
spec: "docker/manifest.tmpl",
},
when: {
branch: [ "master" ],
},
},
{
name: "microbadger",
image: "plugins/webhook",
pull: "always",
settings: {
urls: { from_secret: "microbadger_url" },
},
},
2019-03-13 10:57:48 +01:00
{
image: "plugins/matrix",
name: "matrix",
2019-03-18 13:46:03 +01:00
pull: 'always',
2019-03-13 10:57:48 +01:00
settings: {
homeserver: "https://matrix.rknet.org",
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 }}",
2019-03-18 13:46:03 +01:00
username: { from_secret: "matrix_username" },
password: { from_secret: "matrix_password" },
2019-03-13 10:57:48 +01:00
},
2019-03-14 13:54:36 +01:00
when: {
status: [ "success", "failure" ],
},
2019-03-13 10:57:48 +01:00
},
],
2019-03-18 13:46:03 +01:00
trigger: {
status: [ "success", "failure" ],
},
2019-03-14 13:54:36 +01:00
depends_on: depends_on,
2019-03-13 10:57:48 +01:00
};
[
2019-03-14 13:54:36 +01:00
PipelineBuild(os='linux', arch='amd64'),
PipelineNotifications(depends_on=[
2019-03-18 13:46:03 +01:00
"linux-amd64"
2019-03-14 13:54:36 +01:00
])
2019-03-13 10:57:48 +01:00
]