This repository has been archived on 2024-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
vaultwarden-ldap/.drone.yml

210 lines
3.9 KiB
YAML
Raw Normal View History

2020-10-28 09:05:49 +01:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'README.md'
2020-10-28 09:17:36 +01:00
trigger:
ref:
- refs/heads/main
2020-10-28 09:17:36 +01:00
- refs/pull/**
- refs/tags/**
2020-01-19 00:19:48 +01:00
---
kind: pipeline
2020-05-04 19:43:13 +02:00
name: build-container
2020-01-19 00:19:48 +01:00
platform:
os: linux
arch: amd64
steps:
- name: binary
image: clux/muslrust:nightly-2021-04-14
2020-01-19 00:19:48 +01:00
commands:
2020-02-22 17:32:27 +01:00
- make build
2020-01-19 00:19:48 +01:00
environment:
2020-02-22 17:32:27 +01:00
BUILD_VERSION: ${DRONE_TAG%-*}
2020-01-19 00:19:48 +01:00
- name: dryrun
2021-01-18 21:47:53 +01:00
image: thegeeklab/drone-docker-buildx:20
2020-01-19 00:19:48 +01:00
settings:
2020-02-22 17:32:27 +01:00
dockerfile: Dockerfile
2020-01-19 00:19:48 +01:00
dry_run: true
password:
from_secret: docker_password
2020-09-21 22:11:02 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2020-01-19 00:19:48 +01:00
username:
from_secret: docker_username
2020-02-04 09:47:39 +01:00
when:
ref:
- refs/pull/**
2020-09-02 21:28:18 +02:00
depends_on:
- binary
2020-01-19 00:19:48 +01:00
2020-05-04 19:43:13 +02:00
- name: tags
2020-09-21 22:11:02 +02:00
image: thegeeklab/docker-autotag
2020-05-04 19:43:13 +02:00
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
when:
ref:
- refs/heads/main
2020-05-04 19:43:13 +02:00
- refs/tags/**
2020-09-02 21:28:18 +02:00
depends_on:
- dryrun
2020-05-04 19:43:13 +02:00
2021-05-09 22:42:31 +02:00
- name: changelog-generate
2021-02-11 20:42:35 +01:00
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
depends_on:
- tags
2021-05-09 22:42:31 +02:00
- name: changelog-format
image: thegeeklab/alpine-tools
commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
depends_on:
- changelog-generate
2020-09-02 21:28:18 +02:00
- name: publish-dockerhub
2021-01-18 21:47:53 +01:00
image: thegeeklab/drone-docker-buildx:20
2020-01-19 00:19:48 +01:00
settings:
2020-02-22 17:32:27 +01:00
dockerfile: Dockerfile
2020-01-19 00:19:48 +01:00
password:
from_secret: docker_password
2020-09-21 22:11:02 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2020-01-19 00:19:48 +01:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-19 00:19:48 +01:00
- refs/tags/**
2020-09-02 21:28:18 +02:00
depends_on:
2021-05-09 22:57:22 +02:00
- changelog-format
2020-09-02 21:28:18 +02:00
- name: publish-quay
2021-01-18 21:47:53 +01:00
image: thegeeklab/drone-docker-buildx:20
2020-09-02 21:28:18 +02:00
settings:
dockerfile: Dockerfile
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-02 21:28:18 +02:00
- refs/tags/**
depends_on:
2021-05-09 22:57:22 +02:00
- changelog-format
2020-01-19 00:19:48 +01:00
- name: publish-gitea
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
base_url: https://gitea.rknet.org
note: CHANGELOG.md
overwrite: true
title: ${DRONE_TAG}
when:
ref:
- refs/tags/**
2020-09-02 21:28:18 +02:00
depends_on:
- publish-dockerhub
- publish-quay
2020-01-19 00:19:48 +01:00
2020-10-17 16:08:36 +02:00
trigger:
ref:
- refs/heads/main
2020-10-17 16:08:36 +02:00
- refs/pull/**
- refs/tags/**
2020-10-28 09:17:36 +01:00
depends_on:
- test
2020-01-19 00:19:48 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2020-09-02 21:28:18 +02:00
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
2020-01-19 00:19:48 +01:00
environment:
2020-09-02 21:28:18 +02:00
DOCKER_PASS:
2020-01-19 00:19:48 +01:00
from_secret: docker_password
2020-09-02 21:28:18 +02:00
DOCKER_USER:
2020-01-19 00:19:48 +01:00
from_secret: docker_username
2020-09-02 21:28:18 +02:00
PUSHRM_FILE: README.md
PUSHRM_SHORT: Custom image for the Vaultwarden LDAP connector
2020-09-21 22:11:02 +02:00
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2020-09-02 21:28:18 +02:00
when:
status:
- success
- name: pushrm-quay
pull: always
image: chko/docker-pushrm:1
environment:
APIKEY__QUAY_IO:
from_secret: quay_token
PUSHRM_FILE: README.md
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
2020-02-21 23:27:39 +01:00
when:
status:
- success
2020-01-19 00:19:48 +01:00
- name: matrix
image: plugins/matrix
settings:
2020-02-21 23:27:39 +01:00
homeserver:
from_secret: matrix_homeserver
2020-01-19 00:19:48 +01:00
password:
from_secret: matrix_password
2020-02-21 23:27:39 +01:00
roomid:
from_secret: matrix_roomid
2020-01-19 00:19:48 +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
2020-01-19 00:44:17 +01:00
when:
status:
- success
- failure
2020-01-19 00:19:48 +01:00
trigger:
ref:
- refs/heads/main
2020-01-19 00:19:48 +01:00
- refs/tags/**
status:
- success
- failure
depends_on:
2020-05-04 19:43:13 +02:00
- build-container
2020-01-19 00:19:48 +01:00
---
kind: signature
hmac: b03e655c89137813302453a422df07b0d905cbd6cdfe9d0719cf45e167f7ea75
2020-01-19 00:19:48 +01:00
...