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:
|
2020-12-30 15:31:41 +00:00
|
|
|
- refs/heads/main
|
2020-10-28 08:17:37 +00:00
|
|
|
- refs/pull/**
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-07-03 08:24:05 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build-container
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: dryrun
|
2021-01-18 20:47:54 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
2020-07-03 08:24:05 +00:00
|
|
|
settings:
|
|
|
|
build_args:
|
|
|
|
- BUILD_VERSION=${DRONE_TAG%-*}
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-21 20:11:02 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-07-03 08:24:05 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
- name: tags
|
2020-09-21 20:11:02 +00:00
|
|
|
image: thegeeklab/docker-autotag
|
2020-07-03 08:24:05 +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:
|
2020-12-30 15:31:41 +00:00
|
|
|
- refs/heads/main
|
2020-07-03 08:24:05 +00:00
|
|
|
- refs/tags/**
|
2020-09-02 20:30:52 +00:00
|
|
|
depends_on:
|
|
|
|
- dryrun
|
2020-07-03 08:24:05 +00:00
|
|
|
|
2020-09-02 20:30:52 +00:00
|
|
|
- name: publish-dockerhub
|
2021-01-18 20:47:54 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
2020-07-03 08:24:05 +00:00
|
|
|
settings:
|
|
|
|
build_args:
|
|
|
|
- BUILD_VERSION=${DRONE_TAG%-*}
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-21 20:11:02 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-07-03 08:24:05 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 15:31:41 +00:00
|
|
|
- refs/heads/main
|
2020-07-03 08:24:05 +00:00
|
|
|
- refs/tags/**
|
2020-09-02 20:30:52 +00:00
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
|
|
|
- name: publish-quay
|
2021-01-18 20:47:54 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
2020-09-02 20:30:52 +00:00
|
|
|
settings:
|
|
|
|
build_args:
|
|
|
|
- BUILD_VERSION=${DRONE_TAG%-*}
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 15:31:41 +00:00
|
|
|
- refs/heads/main
|
2020-09-02 20:30:52 +00:00
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
2020-07-03 08:24:05 +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-09-02 20:30:52 +00:00
|
|
|
depends_on:
|
|
|
|
- publish-dockerhub
|
|
|
|
- publish-quay
|
2020-07-03 08:24:05 +00:00
|
|
|
|
2020-10-17 14:08:37 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 15:31:41 +00:00
|
|
|
- refs/heads/main
|
2020-10-17 14:08:37 +00:00
|
|
|
- refs/pull/**
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-10-28 08:17:37 +00:00
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
2020-07-03 08:24:05 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-09-02 20:30:52 +00:00
|
|
|
- name: pushrm-dockerhub
|
|
|
|
pull: always
|
|
|
|
image: chko/docker-pushrm:1
|
2020-07-03 08:24:05 +00:00
|
|
|
environment:
|
2020-09-02 20:30:52 +00:00
|
|
|
DOCKER_PASS:
|
2020-07-03 08:24:05 +00:00
|
|
|
from_secret: docker_password
|
2020-09-02 20:30:52 +00:00
|
|
|
DOCKER_USER:
|
2020-07-03 08:24:05 +00:00
|
|
|
from_secret: docker_username
|
2020-09-02 20:30:52 +00:00
|
|
|
PUSHRM_FILE: README.md
|
2020-09-22 20:37:54 +00:00
|
|
|
PUSHRM_SHORT: Custom image for VNU Html Checker
|
2020-09-21 20:11:02 +00:00
|
|
|
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
|
2020-09-02 20:30:52 +00: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-07-03 08:24:05 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
|
|
|
roomid:
|
|
|
|
from_secret: matrix_roomid
|
|
|
|
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:
|
|
|
|
ref:
|
2020-12-30 15:31:41 +00:00
|
|
|
- refs/heads/main
|
2020-07-03 08:24:05 +00:00
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build-container
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2021-01-18 20:47:54 +00:00
|
|
|
hmac: 419b7fb05571206fe24ea5ff8d8550ec82ddb2fb1b095dc6c602696e86097ce6
|
2020-07-03 08:24:05 +00:00
|
|
|
|
|
|
|
...
|