nginx/.drone.jsonnet

145 lines
3.3 KiB
Plaintext
Raw Normal View History

2020-02-04 10:49:12 +01:00
local PipelineBuild(arch='amd64') = {
kind: 'pipeline',
2020-02-22 17:39:28 +01:00
name: 'build-' + arch,
2019-09-28 19:25:17 +02:00
platform: {
2020-02-04 10:49:12 +01:00
os: 'linux',
2019-09-28 19:25:17 +02:00
arch: arch,
},
steps: [
{
name: 'dryrun',
2020-02-22 17:39:28 +01:00
image: 'plugins/docker',
2019-09-28 19:25:17 +02:00
settings: {
dry_run: true,
2020-02-22 17:39:28 +01:00
dockerfile: 'Dockerfile',
repo: 'xoxys/${DRONE_REPO_NAME}',
2020-02-04 10:49:12 +01:00
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
2020-02-22 17:39:28 +01:00
build_args: [],
2020-02-04 10:49:12 +01:00
},
when: {
ref: [
'refs/pull/**',
],
2019-09-28 19:25:17 +02:00
},
},
{
name: 'publish',
2020-02-22 17:39:28 +01:00
image: 'plugins/docker',
2019-09-28 19:25:17 +02:00
settings: {
auto_tag: true,
2020-02-04 10:49:12 +01:00
auto_tag_suffix: arch,
2020-02-22 17:39:28 +01:00
dockerfile: 'Dockerfile',
repo: 'xoxys/${DRONE_REPO_NAME}',
2020-02-04 10:49:12 +01:00
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
2020-02-22 17:39:28 +01:00
build_args: [],
2019-09-28 19:25:17 +02:00
},
when: {
ref: [
'refs/heads/master',
'refs/tags/**',
],
},
},
2020-02-22 17:39:28 +01:00
{
name: 'publish-gitea',
image: 'plugins/gitea-release',
settings: {
api_key: { from_secret: 'gitea_token' },
base_url: 'https://gitea.rknet.org',
overwrite: true,
title: '${DRONE_TAG}',
note: 'CHANGELOG.md',
},
when: {
ref: ['refs/tags/**'],
},
},
2019-09-28 19:25:17 +02:00
],
};
local PipelineNotifications(depends_on=[]) = {
2020-02-04 10:49:12 +01:00
kind: 'pipeline',
name: 'notifications',
2019-09-28 19:25:17 +02:00
platform: {
2020-02-04 10:49:12 +01:00
os: 'linux',
arch: 'amd64',
2019-09-28 19:25:17 +02:00
},
steps: [
{
2020-02-04 10:49:12 +01:00
image: 'plugins/manifest',
name: 'manifest',
2019-09-28 19:25:17 +02:00
settings: {
ignore_missing: true,
2020-02-22 17:39:28 +01:00
tags: [
'${DRONE_TAG}',
'${DRONE_TAG%-*}',
'${DRONE_TAG%.*}',
'${DRONE_TAG%%.*}',
],
2020-02-04 10:49:12 +01:00
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
2020-02-22 17:39:28 +01:00
spec: 'manifest.tmpl',
},
when: {
status: [
'success',
],
2019-09-28 19:25:17 +02:00
},
},
{
2020-02-04 10:49:12 +01:00
name: 'readme',
image: 'sheogorath/readme-to-dockerhub',
2019-09-28 19:25:17 +02:00
environment: {
2020-02-04 10:49:12 +01:00
DOCKERHUB_USERNAME: { from_secret: 'docker_username' },
DOCKERHUB_PASSWORD: { from_secret: 'docker_password' },
DOCKERHUB_REPO_PREFIX: 'xoxys',
2020-02-22 17:39:28 +01:00
DOCKERHUB_REPO_NAME: '${DRONE_REPO_NAME}',
2020-02-04 10:49:12 +01:00
README_PATH: 'README.md',
SHORT_DESCRIPTION: 'Rootless NGINX - High-performance HTTP server and reverse proxy',
2019-09-28 19:25:17 +02:00
},
2020-02-22 17:39:28 +01:00
when: {
status: [
'success',
],
},
2019-09-28 19:25:17 +02:00
},
{
2020-02-04 10:49:12 +01:00
name: 'matrix',
2020-02-22 17:39:28 +01:00
image: 'plugins/matrix',
2019-09-28 19:25:17 +02:00
settings: {
2020-02-22 17:39:28 +01:00
homeserver: { from_secret: 'matrix_homeserver' },
roomid: { from_secret: 'matrix_roomid' },
2020-02-04 10:49:12 +01:00
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' },
password: { from_secret: 'matrix_password' },
2019-09-28 19:25:17 +02:00
},
when: {
2020-02-22 17:39:28 +01:00
status: [
'success',
'failure',
],
2019-09-28 19:25:17 +02:00
},
},
],
trigger: {
2020-02-04 10:49:12 +01:00
ref: [
'refs/heads/master',
'refs/tags/**',
],
2020-02-22 17:39:28 +01:00
status: [
'success',
'failure',
],
2019-09-28 19:25:17 +02:00
},
depends_on: depends_on,
};
[
2020-02-04 10:49:12 +01:00
PipelineBuild(arch='amd64'),
2019-09-28 19:25:17 +02:00
PipelineNotifications(depends_on=[
2020-02-22 17:39:28 +01:00
'build-amd64',
2020-02-04 10:49:12 +01:00
]),
2019-09-28 19:25:17 +02:00
]