2020-10-28 08:05:50 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: markdownlint
|
|
|
|
image: thegeeklab/markdownlint-cli
|
|
|
|
commands:
|
|
|
|
- markdownlint 'README.md'
|
|
|
|
|
2020-10-28 08:17:37 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/pull/**
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-01-16 21:36:08 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-05-04 17:34:07 +00:00
|
|
|
name: build-container
|
2020-01-16 21:36:08 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: binary
|
2020-10-17 21:17:18 +00:00
|
|
|
image: clux/muslrust:nightly-2020-10-02
|
2020-01-16 21:36:08 +00:00
|
|
|
commands:
|
2020-02-22 15:59:09 +00:00
|
|
|
- apt-get -qq update && apt-get install -yqq --no-install-recommends libpq-dev
|
2020-02-22 15:58:35 +00:00
|
|
|
- make build
|
2020-01-16 22:01:17 +00:00
|
|
|
environment:
|
2020-02-22 15:58:35 +00:00
|
|
|
BUILD_VERSION: ${DRONE_TAG%-*}
|
2020-01-16 21:36:08 +00:00
|
|
|
|
2020-03-22 14:10:03 +00:00
|
|
|
- name: verify
|
|
|
|
image: alpine
|
2020-03-22 14:06:37 +00:00
|
|
|
commands:
|
|
|
|
- src/target/x86_64-unknown-linux-musl/release/bitwarden_rs --help
|
|
|
|
- src/target/x86_64-unknown-linux-musl/release/bitwarden_rs --version
|
2020-08-30 21:37:58 +00:00
|
|
|
depends_on:
|
|
|
|
- binary
|
2020-03-22 14:10:03 +00:00
|
|
|
|
|
|
|
- name: dryrun
|
2020-11-28 11:10:29 +00:00
|
|
|
image: plugins/docker:19
|
2020-01-16 23:57:45 +00:00
|
|
|
settings:
|
2020-02-22 15:58:35 +00:00
|
|
|
dockerfile: Dockerfile
|
2020-01-16 23:57:45 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-21 20:11:01 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-01-16 23:57:45 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-02-01 16:54:03 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2020-08-30 21:37:58 +00:00
|
|
|
depends_on:
|
|
|
|
- verify
|
2020-01-16 23:57:45 +00:00
|
|
|
|
2020-05-04 17:34:07 +00:00
|
|
|
- name: tags
|
2020-09-21 20:11:01 +00:00
|
|
|
image: thegeeklab/docker-autotag
|
2020-05-04 17:34:07 +00: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/master
|
|
|
|
- refs/tags/**
|
2020-08-30 21:37:58 +00:00
|
|
|
depends_on:
|
|
|
|
- dryrun
|
2020-05-04 17:34:07 +00:00
|
|
|
|
2020-08-30 21:35:02 +00:00
|
|
|
- name: publish-dockerhub
|
2020-11-28 11:10:29 +00:00
|
|
|
image: plugins/docker:19
|
2020-01-16 23:57:45 +00:00
|
|
|
settings:
|
2020-02-22 15:58:35 +00:00
|
|
|
dockerfile: Dockerfile
|
2020-01-16 23:57:45 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-21 20:11:01 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-01-16 23:57:45 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/**
|
2020-08-30 21:35:02 +00:00
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
|
|
|
- name: publish-quay
|
2020-11-28 11:10:29 +00:00
|
|
|
image: plugins/docker:19
|
2020-08-30 21:35:02 +00: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/master
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
2020-01-16 23:57:45 +00: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-08-30 21:35:02 +00:00
|
|
|
depends_on:
|
|
|
|
- publish-dockerhub
|
|
|
|
- publish-quay
|
2020-01-16 23:57:45 +00:00
|
|
|
|
2020-10-17 14:08:37 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/pull/**
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-10-28 08:17:37 +00:00
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
2020-01-16 23:57:45 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-08-30 21:35:02 +00:00
|
|
|
- name: pushrm-dockerhub
|
2020-09-02 19:16:39 +00:00
|
|
|
pull: always
|
2020-08-30 21:35:02 +00:00
|
|
|
image: chko/docker-pushrm:1
|
2020-01-16 23:57:45 +00:00
|
|
|
environment:
|
2020-08-30 21:35:02 +00:00
|
|
|
DOCKER_PASS:
|
2020-01-16 23:57:45 +00:00
|
|
|
from_secret: docker_password
|
2020-08-30 21:35:02 +00:00
|
|
|
DOCKER_USER:
|
2020-01-16 23:57:45 +00:00
|
|
|
from_secret: docker_username
|
2020-09-02 19:16:39 +00:00
|
|
|
PUSHRM_FILE: README.md
|
2020-09-22 20:18:06 +00:00
|
|
|
PUSHRM_SHORT: Custom image for BitwardenRS password manager
|
2020-09-21 20:11:01 +00:00
|
|
|
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
|
2020-08-30 21:35:02 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
|
|
|
- name: pushrm-quay
|
2020-09-02 19:16:39 +00:00
|
|
|
pull: always
|
2020-08-30 21:35:02 +00:00
|
|
|
image: chko/docker-pushrm:1
|
|
|
|
environment:
|
|
|
|
APIKEY__QUAY_IO:
|
|
|
|
from_secret: quay_token
|
2020-09-02 19:16:39 +00:00
|
|
|
PUSHRM_FILE: README.md
|
|
|
|
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
2020-02-21 22:18:15 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
2020-01-16 23:57:45 +00:00
|
|
|
|
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
2020-02-21 22:18:15 +00:00
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
2020-01-16 23:57:45 +00:00
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
2020-02-21 22:18:15 +00:00
|
|
|
roomid:
|
|
|
|
from_secret: matrix_roomid
|
2020-01-16 23:57:45 +00: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-18 23:36:23 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2020-01-16 23:57:45 +00:00
|
|
|
|
|
|
|
trigger:
|
2020-01-17 12:34:21 +00:00
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/**
|
2020-01-16 23:57:45 +00:00
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
2020-05-04 17:35:00 +00:00
|
|
|
- build-container
|
2020-01-16 23:57:45 +00:00
|
|
|
|
2020-02-22 15:59:09 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2020-11-28 11:10:29 +00:00
|
|
|
hmac: 89da8fbf2549e2920eb18f37d6f781805455dbe861b0ea4df5513f0ede6a64de
|
2020-02-22 15:59:09 +00:00
|
|
|
|
2020-01-16 21:36:08 +00:00
|
|
|
...
|