2020-10-28 08:05:49 +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:36 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 15:31:40 +00:00
|
|
|
- refs/heads/main
|
2020-10-28 08:17:36 +00:00
|
|
|
- refs/pull/**
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-02-22 15:21:17 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-05-04 17:47:03 +00:00
|
|
|
name: build-container
|
2020-02-22 15:21:17 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-01-09 22:40:11 +00:00
|
|
|
- name: wait-for
|
2021-01-09 22:42:17 +00:00
|
|
|
image: thegeeklab/wait-for
|
2021-01-09 22:40:11 +00:00
|
|
|
commands:
|
|
|
|
- wait-for dind:2375
|
|
|
|
environment:
|
|
|
|
WAITFOR_TIMEOUT: 60
|
|
|
|
|
2020-02-22 15:21:17 +00:00
|
|
|
- name: dryrun
|
2021-01-09 22:35:00 +00:00
|
|
|
image: jdrouet/docker-with-buildx:stable
|
|
|
|
commands:
|
|
|
|
- docker buildx ls
|
|
|
|
- docker buildx create --use
|
|
|
|
- docker buildx ls
|
|
|
|
- docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag thegeeklab/${DRONE_REPO_NAME}:latest .
|
2020-12-04 13:45:58 +00:00
|
|
|
environment:
|
2021-01-09 22:35:00 +00:00
|
|
|
DOCKER_DRIVER: overlay2
|
|
|
|
DOCKER_HOST: tcp://dind:2375/
|
2020-02-22 15:21:17 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
|
|
|
|
2020-05-04 17:47:03 +00:00
|
|
|
- name: tags
|
2020-09-21 20:11:02 +00:00
|
|
|
image: thegeeklab/docker-autotag
|
2020-05-04 17:47:03 +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:40 +00:00
|
|
|
- refs/heads/main
|
2020-05-04 17:47:03 +00:00
|
|
|
- refs/tags/**
|
|
|
|
|
2020-08-30 13:37:45 +00:00
|
|
|
- name: publish-dockerhub
|
2020-11-28 11:10:28 +00:00
|
|
|
image: plugins/docker:19
|
2020-02-22 15:21:17 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-21 20:11:02 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-02-22 15:21:17 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-12-04 13:45:58 +00:00
|
|
|
environment:
|
|
|
|
DOCKER_BUILDKIT: 1
|
2020-02-22 15:21:17 +00:00
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 15:31:40 +00:00
|
|
|
- refs/heads/main
|
2020-02-22 15:21:17 +00:00
|
|
|
- refs/tags/**
|
2020-08-30 13:37:45 +00:00
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
|
|
|
- name: publish-quay
|
2020-11-28 11:10:28 +00:00
|
|
|
image: plugins/docker:19
|
2020-08-30 13:37:45 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
password:
|
2020-08-30 13:43:00 +00:00
|
|
|
from_secret: quay_password
|
2020-08-30 13:37:45 +00:00
|
|
|
registry: quay.io
|
2020-08-30 14:44:39 +00:00
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
2020-08-30 13:37:45 +00:00
|
|
|
username:
|
2020-08-30 13:43:00 +00:00
|
|
|
from_secret: quay_username
|
2020-08-30 13:37:45 +00:00
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 15:31:40 +00:00
|
|
|
- refs/heads/main
|
2020-08-30 13:37:45 +00:00
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
2020-02-22 15:21:17 +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-08-30 13:37:45 +00:00
|
|
|
depends_on:
|
|
|
|
- publish-dockerhub
|
|
|
|
- publish-quay
|
2020-02-22 15:21:17 +00:00
|
|
|
|
2021-01-09 22:35:00 +00:00
|
|
|
services:
|
|
|
|
- name: dind
|
|
|
|
image: docker:dind
|
|
|
|
|
2020-10-17 14:08:36 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 15:31:40 +00:00
|
|
|
- refs/heads/main
|
2020-10-17 14:08:36 +00:00
|
|
|
- refs/pull/**
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-10-28 08:17:36 +00:00
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
2020-02-22 15:21:17 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-08-30 14:07:37 +00:00
|
|
|
- name: pushrm-dockerhub
|
2020-09-02 19:12:18 +00:00
|
|
|
pull: always
|
2020-08-28 07:03:09 +00:00
|
|
|
image: chko/docker-pushrm:1
|
2020-02-22 15:21:17 +00:00
|
|
|
environment:
|
2020-08-28 07:36:02 +00:00
|
|
|
DOCKER_PASS:
|
|
|
|
from_secret: docker_password
|
|
|
|
DOCKER_USER:
|
2020-02-22 15:21:17 +00:00
|
|
|
from_secret: docker_username
|
2020-09-02 19:07:49 +00:00
|
|
|
PUSHRM_FILE: README.md
|
|
|
|
PUSHRM_SHORT: Rootless Alpine base image
|
2020-09-21 20:11:02 +00:00
|
|
|
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
|
2020-02-22 15:21:17 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
2020-08-30 14:07:37 +00:00
|
|
|
- name: pushrm-quay
|
2020-09-02 19:12:18 +00:00
|
|
|
pull: always
|
2020-08-30 14:07:37 +00:00
|
|
|
image: chko/docker-pushrm:1
|
|
|
|
environment:
|
|
|
|
APIKEY__QUAY_IO:
|
|
|
|
from_secret: quay_token
|
2020-09-02 19:07:49 +00:00
|
|
|
PUSHRM_FILE: README.md
|
|
|
|
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
2020-08-30 14:07:37 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
2020-02-22 15:21:17 +00: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:
|
2020-12-30 15:31:40 +00:00
|
|
|
- refs/heads/main
|
2020-02-22 15:21:17 +00:00
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
2020-05-04 17:47:03 +00:00
|
|
|
- build-container
|
2020-02-22 15:21:17 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2021-01-09 22:42:17 +00:00
|
|
|
hmac: 455a7f7116b32b38f2e8a4f8b5b78453f75f9a0d2f7af09bc65be6cd96d70e53
|
2020-02-22 15:21:17 +00:00
|
|
|
|
|
|
|
...
|