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