alpine/.drone.yml

174 lines
3.1 KiB
YAML
Raw Normal View History

2020-10-28 09:05:49 +01:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'README.md'
2020-02-22 16:21:17 +01:00
---
kind: pipeline
2020-05-04 19:47:03 +02:00
name: build-container
2020-02-22 16:21:17 +01:00
platform:
os: linux
arch: amd64
steps:
- name: dryrun
image: plugins/docker
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
2020-09-21 22:11:02 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2020-02-22 16:21:17 +01:00
username:
from_secret: docker_username
when:
ref:
- refs/pull/**
2020-05-04 19:47:03 +02:00
- name: tags
2020-09-21 22:11:02 +02:00
image: thegeeklab/docker-autotag
2020-05-04 19:47:03 +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-08-30 15:37:45 +02:00
- name: publish-dockerhub
2020-02-22 16:21:17 +01:00
image: plugins/docker
settings:
dockerfile: Dockerfile
password:
from_secret: docker_password
2020-09-21 22:11:02 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2020-02-22 16:21:17 +01:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
2020-08-30 15:37:45 +02:00
depends_on:
- tags
- name: publish-quay
image: plugins/docker
settings:
dockerfile: Dockerfile
password:
2020-08-30 15:43:00 +02:00
from_secret: quay_password
2020-08-30 15:37:45 +02:00
registry: quay.io
2020-08-30 16:44:39 +02:00
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
2020-08-30 15:37:45 +02:00
username:
2020-08-30 15:43:00 +02:00
from_secret: quay_username
2020-08-30 15:37:45 +02:00
when:
ref:
- refs/heads/master
- refs/tags/**
depends_on:
- tags
2020-02-22 16:21:17 +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-08-30 15:37:45 +02:00
depends_on:
- publish-dockerhub
- publish-quay
2020-02-22 16:21:17 +01:00
2020-10-17 16:08:36 +02:00
trigger:
ref:
- refs/heads/master
- refs/pull/**
- refs/tags/**
2020-02-22 16:21:17 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2020-08-30 16:07:37 +02:00
- name: pushrm-dockerhub
pull: always
2020-08-28 09:03:09 +02:00
image: chko/docker-pushrm:1
2020-02-22 16:21:17 +01:00
environment:
2020-08-28 09:36:02 +02:00
DOCKER_PASS:
from_secret: docker_password
DOCKER_USER:
2020-02-22 16:21:17 +01:00
from_secret: docker_username
2020-09-02 21:07:49 +02:00
PUSHRM_FILE: README.md
PUSHRM_SHORT: Rootless Alpine base image
2020-09-21 22:11:02 +02:00
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2020-02-22 16:21:17 +01:00
when:
status:
- success
2020-08-30 16:07:37 +02:00
- name: pushrm-quay
pull: always
2020-08-30 16:07:37 +02:00
image: chko/docker-pushrm:1
environment:
APIKEY__QUAY_IO:
from_secret: quay_token
2020-09-02 21:07:49 +02:00
PUSHRM_FILE: README.md
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
2020-08-30 16:07:37 +02:00
when:
status:
- success
2020-02-22 16:21:17 +01:00
- 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:
- refs/heads/master
- refs/tags/**
status:
- success
- failure
depends_on:
2020-05-04 19:47:03 +02:00
- build-container
2020-02-22 16:21:17 +01:00
---
kind: signature
2020-10-28 09:05:49 +01:00
hmac: 4d2e45acf53dbe58926f40799811c697f9340e890e4abf35a903780ef5986a80
2020-02-22 16:21:17 +01:00
...