molecule/.drone.yml

124 lines
2.4 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-02-22 16:46:02 +01:00
repo: xoxys/${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
image: xoxys/docker-autotag
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/**
2019-03-18 14:45:18 +01:00
- name: publish
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-02-22 16:46:02 +01:00
repo: xoxys/${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/**
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/**
2019-03-18 14:45:18 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2019-09-23 08:37:25 +02:00
- name: readme
image: sheogorath/readme-to-dockerhub
environment:
DOCKERHUB_PASSWORD:
from_secret: docker_password
2020-02-22 16:46:02 +01:00
DOCKERHUB_REPO_NAME: ${DRONE_REPO_NAME}
2019-09-23 08:37:25 +02:00
DOCKERHUB_REPO_PREFIX: xoxys
DOCKERHUB_USERNAME:
from_secret: docker_username
README_PATH: README.md
SHORT_DESCRIPTION: Molecule - Automated Ansible roles testing
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-05-04 20:58:06 +02:00
hmac: 481cc5c3443cd199617fc9418ffbe01ed478aafa8340d382f9f6e011a1c44671
2019-05-12 23:21:29 +02:00
2019-03-18 14:45:18 +01:00
...