vaultwarden/.drone.yml

139 lines
3.0 KiB
YAML
Raw Normal View History

2020-01-16 22:36:08 +01:00
---
kind: pipeline
2020-01-17 00:59:27 +01:00
name: build-container-amd64
2020-01-16 22:36:08 +01:00
platform:
os: linux
arch: amd64
steps:
- name: binary
image: clux/muslrust:nightly-2019-12-19
commands:
- "[ -z \"${DRONE_TAG}\" ] && BITWARDEN_VERSION=master || BITWARDEN_VERSION=${DRONE_TAG%-*}"
2020-01-16 23:01:17 +01:00
- mkdir -p source/
2020-01-16 23:25:40 +01:00
- "apt-get -qq update && apt-get install -yqq --no-install-recommends libpq-dev "
2020-01-16 23:01:17 +01:00
- rustup set profile minimal
2020-01-16 23:25:40 +01:00
- curl -sSL https://github.com/dani-garcia/bitwarden_rs/archive/$BITWARDEN_VERSION.tar.gz | tar xz -C source/ --strip-components=1
2020-01-17 00:57:45 +01:00
- cd source/ && cargo build -j 8 --features $DB --release
2020-01-16 23:01:17 +01:00
environment:
DB: postgresql
DEBIAN_FRONTEND: noninteractive
LANG: C.UTF-8
TZ: UTC
2020-01-16 22:36:08 +01:00
2020-01-17 00:57:45 +01:00
- name: dryrun
image: plugins/docker:linux-amd64
settings:
dockerfile: ./Dockerfile.amd64
dry_run: true
password:
from_secret: docker_password
2020-01-17 01:34:14 +01:00
repo: xoxys/bitwardenrs
2020-01-17 00:57:45 +01:00
username:
from_secret: docker_username
- name: publish
image: plugins/docker:linux-amd64
settings:
auto_tag: true
auto_tag_suffix: amd64
dockerfile: ./Dockerfile.amd64
password:
from_secret: docker_password
2020-01-17 01:34:14 +01:00
repo: xoxys/bitwardenrs
2020-01-17 00:57:45 +01:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
- 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/**
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: manifest
image: plugins/manifest
settings:
ignore_missing: true
password:
from_secret: docker_password
spec: ./manifest.tmpl
tags:
- ${DRONE_TAG}
- ${DRONE_TAG%-*}
- ${DRONE_TAG%.*}
- ${DRONE_TAG%%.*}
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
- name: readme
image: sheogorath/readme-to-dockerhub
environment:
DOCKERHUB_PASSWORD:
from_secret: docker_password
2020-01-17 01:34:14 +01:00
DOCKERHUB_REPO_NAME: bitwardenrs
2020-01-17 00:57:45 +01:00
DOCKERHUB_REPO_PREFIX: xoxys
DOCKERHUB_USERNAME:
from_secret: docker_username
README_PATH: README.md
2020-01-17 01:34:14 +01:00
SHORT_DESCRIPTION: Rootless bitwardenrs - Self-hosted RSS feed aggregator
2020-01-17 00:57:45 +01:00
when:
ref:
- refs/heads/master
- refs/tags/**
- name: microbadger
image: plugins/webhook
settings:
urls:
from_secret: microbadger_url
- name: matrix
image: plugins/matrix
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
trigger:
status:
- success
- failure
depends_on:
2020-01-17 00:59:27 +01:00
- build-container-amd64
2020-01-17 00:57:45 +01:00
2020-01-16 22:36:08 +01:00
...