molecule/.drone.yml

168 lines
3.2 KiB
YAML
Raw Normal View History

2019-02-28 10:34:14 +01:00
---
kind: pipeline
2020-05-04 20:58:06 +02:00
name: build-container
2019-03-18 14:45:18 +01:00
platform:
os: linux
arch: amd64
2019-02-28 10:34:14 +01:00
steps:
2019-03-18 14:45:18 +01:00
- name: dryrun
2020-02-20 19:59:46 +01:00
image: plugins/docker
2019-03-18 14:45:18 +01:00
settings:
2020-02-20 19:10:31 +01:00
build_args:
2020-02-22 16:46:02 +01:00
- BUILD_VERSION=${DRONE_TAG%-*}
2020-02-20 17:27:15 +01:00
dockerfile: Dockerfile
2019-03-18 14:45:18 +01:00
dry_run: true
password:
from_secret: docker_password
2020-09-21 22:11:00 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-03-18 14:45:18 +01:00
username:
from_secret: docker_username
2020-02-20 17:24:52 +01:00
when:
ref:
- refs/pull/**
2019-03-18 14:45:18 +01:00
2020-05-04 20:58:06 +02:00
- name: tags
2020-09-21 22:11:00 +02:00
image: thegeeklab/docker-autotag
2020-05-04 20:58:06 +02: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-09-02 22:17:22 +02:00
depends_on:
- dryrun
2020-05-04 20:58:06 +02:00
2020-09-02 22:17:22 +02:00
- name: publish-dockerhub
2020-02-20 19:59:46 +01:00
image: plugins/docker
2019-03-18 14:45:18 +01:00
settings:
2020-02-20 19:10:31 +01:00
build_args:
2020-02-22 16:46:02 +01:00
- BUILD_VERSION=${DRONE_TAG%-*}
2020-02-20 17:27:15 +01:00
dockerfile: Dockerfile
2019-03-18 14:45:18 +01:00
password:
from_secret: docker_password
2020-09-21 22:11:00 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-03-18 14:45:18 +01:00
username:
from_secret: docker_username
when:
2019-09-23 08:50:01 +02:00
ref:
- refs/heads/master
- refs/tags/**
2020-09-02 22:17:22 +02:00
depends_on:
- tags
- name: publish-quay
image: plugins/docker
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:
- refs/heads/master
- refs/tags/**
depends_on:
- tags
2019-09-23 08:50:01 +02:00
2020-02-20 17:24:52 +01: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 22:17:22 +02:00
depends_on:
- publish-dockerhub
- publish-quay
2020-02-20 17:24:52 +01:00
2020-10-17 16:08:36 +02:00
trigger:
ref:
- refs/heads/master
- refs/pull/**
- refs/tags/**
2019-03-18 14:45:18 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2020-09-02 22:17:22 +02:00
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
2019-09-23 08:37:25 +02:00
environment:
2020-09-02 22:17:22 +02:00
DOCKER_PASS:
2019-09-23 08:37:25 +02:00
from_secret: docker_password
2020-09-02 22:17:22 +02:00
DOCKER_USER:
2019-09-23 08:37:25 +02:00
from_secret: docker_username
2020-09-02 22:17:22 +02:00
PUSHRM_FILE: README.md
2020-09-22 22:32:55 +02:00
PUSHRM_SHORT: Custom image for Molecule Ansible test automation
2020-09-21 22:11:00 +02:00
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2020-09-02 22:17:22 +02: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}
2019-09-23 08:37:25 +02:00
when:
2020-02-20 17:24:52 +01:00
status:
- success
2019-03-18 14:45:18 +01:00
- name: matrix
image: plugins/matrix
settings:
homeserver:
from_secret: matrix_homeserver
2019-03-18 14:45:18 +01:00
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
2019-03-18 14:45:18 +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-02-20 17:40:54 +01:00
when:
status:
- success
- failure
2020-02-20 17:24:52 +01:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
status:
- success
- failure
2019-03-18 14:45:18 +01:00
depends_on:
2020-05-04 20:58:06 +02:00
- build-container
2019-03-18 14:45:18 +01:00
2019-05-12 23:21:29 +02:00
---
kind: signature
2020-10-17 16:08:36 +02:00
hmac: 9558191b9d9a3437b09945fc55f9af5ae18cd1c1f4c751483619eb2040816bbe
2019-05-12 23:21:29 +02:00
2019-03-18 14:45:18 +01:00
...