vaultwarden/.drone.yml

143 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:
2020-02-07 23:18:52 +01:00
- "[ -z \"${DRONE_TAG}\" ] && BITWARDEN_VERSION=1.13.1 || BITWARDEN_VERSION=\"${DRONE_TAG##v}\""
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-02-07 23:22:01 +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:
2020-02-21 23:18:15 +01:00
dockerfile: Dockerfile.amd64
2020-01-17 00:57:45 +01:00
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
when:
ref:
- refs/pull/**
2020-01-17 00:57:45 +01:00
- name: publish
image: plugins/docker:linux-amd64
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-02-21 23:18:15 +01:00
dockerfile: Dockerfile.amd64
2020-01-17 00:57:45 +01:00
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
2020-02-21 23:18:15 +01:00
spec: manifest.tmpl
2020-01-17 00:57:45 +01:00
tags:
- ${DRONE_TAG}
- ${DRONE_TAG%-*}
- ${DRONE_TAG%.*}
- ${DRONE_TAG%%.*}
username:
from_secret: docker_username
2020-02-21 23:18:15 +01:00
when:
status:
- success
2020-01-17 00:57:45 +01:00
- 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 13:34:21 +01:00
SHORT_DESCRIPTION: Rootless Bitwarden_RS - Self-hosted password manager
2020-02-21 23:18:15 +01:00
when:
status:
- success
2020-01-17 00:57:45 +01:00
- name: matrix
image: plugins/matrix
settings:
2020-02-21 23:18:15 +01:00
homeserver:
from_secret: matrix_homeserver
2020-01-17 00:57:45 +01:00
password:
from_secret: matrix_password
2020-02-21 23:18:15 +01:00
roomid:
from_secret: matrix_roomid
2020-01-17 00:57:45 +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:36:23 +01:00
when:
status:
- success
- failure
2020-01-17 00:57:45 +01:00
trigger:
2020-01-17 13:34:21 +01:00
ref:
- refs/heads/master
- refs/tags/**
2020-01-17 00:57:45 +01:00
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-17 22:34:16 +01:00
---
kind: signature
2020-02-21 23:18:15 +01:00
hmac: 5164600e992db4b554b23132b90d2d9ec998b86b161250a12c06a34896b4fccb
2020-01-17 22:34:16 +01:00
2020-01-16 22:36:08 +01:00
...