2019-02-28 09:34:14 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-11-22 20:52:56 +00:00
|
|
|
name: build-amd64
|
2019-03-18 13:45:18 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2019-02-28 09:34:14 +00:00
|
|
|
|
|
|
|
steps:
|
2019-03-18 13:45:18 +00:00
|
|
|
- name: dryrun
|
2020-02-20 18:59:46 +00:00
|
|
|
image: plugins/docker
|
2019-03-18 13:45:18 +00:00
|
|
|
settings:
|
2020-02-20 18:10:31 +00:00
|
|
|
build_args:
|
|
|
|
MOLECULE_VERSION: ${DRONE_TAG%-*}
|
2020-02-20 16:27:15 +00:00
|
|
|
dockerfile: Dockerfile
|
2019-03-18 13:45:18 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2019-11-22 20:52:56 +00:00
|
|
|
repo: xoxys/molecule
|
2019-03-18 13:45:18 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-02-20 16:24:52 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2019-03-18 13:45:18 +00:00
|
|
|
|
|
|
|
- name: publish
|
2020-02-20 18:59:46 +00:00
|
|
|
image: plugins/docker
|
2019-03-18 13:45:18 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
2019-11-22 20:52:56 +00:00
|
|
|
auto_tag_suffix: amd64
|
2020-02-20 18:10:31 +00:00
|
|
|
build_args:
|
|
|
|
MOLECULE_VERSION: ${DRONE_TAG%-*}
|
2020-02-20 16:27:15 +00:00
|
|
|
dockerfile: Dockerfile
|
2019-03-18 13:45:18 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2019-11-22 20:52:56 +00:00
|
|
|
repo: xoxys/molecule
|
2019-03-18 13:45:18 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
2019-09-23 06:50:01 +00:00
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
2019-11-22 20:52:56 +00:00
|
|
|
- refs/tags/**
|
2019-09-23 06:50:01 +00:00
|
|
|
|
2020-02-20 16:24:52 +00:00
|
|
|
- name: publish-gitea
|
|
|
|
pull: always
|
|
|
|
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 13:45:18 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: manifest
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
ignore_missing: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2019-11-22 21:07:55 +00:00
|
|
|
spec: manifest.tmpl
|
2020-02-20 16:24:52 +00:00
|
|
|
tags:
|
|
|
|
- ${DRONE_TAG}
|
|
|
|
- ${DRONE_TAG%-*}
|
|
|
|
- ${DRONE_TAG%.*}
|
|
|
|
- ${DRONE_TAG%%.*}
|
2019-03-18 13:45:18 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
|
2019-09-23 06:37:25 +00:00
|
|
|
- name: readme
|
|
|
|
image: sheogorath/readme-to-dockerhub
|
|
|
|
environment:
|
|
|
|
DOCKERHUB_PASSWORD:
|
|
|
|
from_secret: docker_password
|
|
|
|
DOCKERHUB_REPO_NAME: molecule
|
|
|
|
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 16:24:52 +00:00
|
|
|
status:
|
|
|
|
- success
|
2019-03-18 13:45:18 +00:00
|
|
|
|
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
2019-11-22 20:52:56 +00:00
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
2019-03-18 13:45:18 +00:00
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
2019-11-22 20:52:56 +00:00
|
|
|
roomid:
|
|
|
|
from_secret: matrix_roomid
|
2019-03-18 13:45:18 +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-02-20 16:40:54 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2020-02-20 16:24:52 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2019-03-18 13:45:18 +00:00
|
|
|
|
|
|
|
depends_on:
|
2019-11-22 20:52:56 +00:00
|
|
|
- build-amd64
|
2019-03-18 13:45:18 +00:00
|
|
|
|
2019-05-12 21:21:29 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2020-02-20 18:59:46 +00:00
|
|
|
hmac: fa487cfd38a0eb95fe99e8c676b90426589aff4954556d23e59be0895771bcc4
|
2019-05-12 21:21:29 +00:00
|
|
|
|
2019-03-18 13:45:18 +00:00
|
|
|
...
|