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/tags/**
|
2021-01-10 14:19:12 +00:00
|
|
|
- refs/pull/**
|
2020-10-28 08:17:36 +00:00
|
|
|
|
2020-02-22 15:21:17 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-01-10 14:19:12 +00:00
|
|
|
name: build-container-amd64
|
2020-02-22 15:21:17 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-01-10 22:06:23 +00:00
|
|
|
- name: tags
|
|
|
|
image: thegeeklab/docker-autotag
|
2021-01-09 22:40:11 +00:00
|
|
|
environment:
|
2021-01-10 22:06:23 +00:00
|
|
|
DOCKER_AUTOTAG_FORCE_LATEST: True
|
|
|
|
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
|
|
|
|
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
|
|
|
|
DOCKER_AUTOTAG_SUFFIX: amd64
|
|
|
|
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
|
2021-01-09 22:40:11 +00:00
|
|
|
|
2020-02-22 15:21:17 +00:00
|
|
|
- name: dryrun
|
2021-01-18 20:10:57 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
2021-01-10 20:52:12 +00:00
|
|
|
settings:
|
2021-01-10 22:06:23 +00:00
|
|
|
dockerfile: Dockerfile.amd64
|
2021-01-10 20:52:12 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
2021-01-18 20:10:57 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2021-01-10 20:52:12 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-02-22 15:21:17 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2021-01-09 22:52:31 +00:00
|
|
|
depends_on:
|
2021-01-10 22:06:23 +00:00
|
|
|
- tags
|
2020-05-04 17:47:03 +00:00
|
|
|
|
2020-08-30 13:37:45 +00:00
|
|
|
- name: publish-dockerhub
|
2021-01-22 10:28:49 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx
|
2021-01-10 22:06:23 +00:00
|
|
|
settings:
|
2021-01-22 10:28:49 +00:00
|
|
|
build_args:
|
|
|
|
- BUILD_DATE=${DRONE_DOCKER_BUILD_TIME}
|
2021-01-10 22:06:23 +00:00
|
|
|
dockerfile: Dockerfile.amd64
|
|
|
|
password:
|
2020-02-22 15:21:17 +00:00
|
|
|
from_secret: docker_password
|
2021-01-18 20:10:57 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2021-01-10 22:06:23 +00:00
|
|
|
username:
|
2020-02-22 15:21:17 +00:00
|
|
|
from_secret: docker_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
|
|
|
|
2021-01-18 20:10:57 +00:00
|
|
|
- name: publish-quay
|
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.amd64
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
2021-01-10 14:19:12 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-01-10 14:22:47 +00:00
|
|
|
name: build-container-arm64
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-01-10 22:06:23 +00:00
|
|
|
- name: tags
|
|
|
|
image: thegeeklab/docker-autotag
|
2021-01-10 14:19:12 +00:00
|
|
|
environment:
|
2021-01-10 22:06:23 +00:00
|
|
|
DOCKER_AUTOTAG_FORCE_LATEST: True
|
|
|
|
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
|
|
|
|
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
|
|
|
|
DOCKER_AUTOTAG_SUFFIX: arm64
|
|
|
|
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
- name: dryrun
|
2021-01-18 20:10:57 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
2021-01-10 20:52:12 +00:00
|
|
|
settings:
|
2021-01-10 22:06:23 +00:00
|
|
|
dockerfile: Dockerfile.arm64
|
2021-01-10 20:52:12 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
platforms:
|
|
|
|
- linux/arm64/v8
|
2021-01-18 20:10:57 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2021-01-10 20:52:12 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2021-01-10 14:19:12 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
|
|
|
depends_on:
|
2021-01-10 22:06:23 +00:00
|
|
|
- tags
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
- name: publish-dockerhub
|
2021-01-22 10:28:49 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx
|
2021-01-10 22:06:23 +00:00
|
|
|
settings:
|
2021-01-22 10:28:49 +00:00
|
|
|
build_args:
|
|
|
|
- BUILD_DATE=${DRONE_DOCKER_BUILD_TIME}
|
2021-01-10 22:06:23 +00:00
|
|
|
dockerfile: Dockerfile.arm64
|
|
|
|
password:
|
2021-01-10 14:19:12 +00:00
|
|
|
from_secret: docker_password
|
2021-01-18 20:10:57 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2021-01-10 22:06:23 +00:00
|
|
|
username:
|
2021-01-10 14:19:12 +00:00
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
2020-02-22 15:21:17 +00:00
|
|
|
|
2021-01-18 20:10:57 +00:00
|
|
|
- name: publish-quay
|
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.arm64
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
2020-10-17 14:08:36 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 15:31:40 +00:00
|
|
|
- refs/heads/main
|
2021-01-10 14:19:12 +00:00
|
|
|
- refs/tags/**
|
2020-10-17 14:08:36 +00:00
|
|
|
- refs/pull/**
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-01-10 14:22:47 +00:00
|
|
|
name: build-container-arm
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-01-10 22:06:23 +00:00
|
|
|
- name: tags
|
|
|
|
image: thegeeklab/docker-autotag
|
2021-01-10 14:19:12 +00:00
|
|
|
environment:
|
2021-01-10 22:06:23 +00:00
|
|
|
DOCKER_AUTOTAG_FORCE_LATEST: True
|
|
|
|
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
|
|
|
|
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
|
|
|
|
DOCKER_AUTOTAG_SUFFIX: arm
|
|
|
|
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
- name: dryrun
|
2021-01-18 20:10:57 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
2021-01-10 20:52:12 +00:00
|
|
|
settings:
|
2021-01-10 22:06:23 +00:00
|
|
|
dockerfile: Dockerfile.arm
|
2021-01-10 20:52:12 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
platforms:
|
|
|
|
- linux/arm/v7
|
2021-01-18 20:10:57 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2021-01-10 20:52:12 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2021-01-10 14:19:12 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
|
|
|
depends_on:
|
2021-01-10 22:06:23 +00:00
|
|
|
- tags
|
2021-01-10 14:19:12 +00:00
|
|
|
|
|
|
|
- name: publish-dockerhub
|
2021-01-22 10:28:49 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx
|
2021-01-10 22:06:23 +00:00
|
|
|
settings:
|
2021-01-22 10:28:49 +00:00
|
|
|
build_args:
|
|
|
|
- BUILD_DATE=${DRONE_DOCKER_BUILD_TIME}
|
2021-01-10 22:06:23 +00:00
|
|
|
dockerfile: Dockerfile.arm
|
|
|
|
password:
|
2021-01-10 14:19:12 +00:00
|
|
|
from_secret: docker_password
|
2021-01-18 20:10:57 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2021-01-10 22:06:23 +00:00
|
|
|
username:
|
2021-01-10 14:19:12 +00:00
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
2021-01-18 20:10:57 +00:00
|
|
|
- name: publish-quay
|
|
|
|
image: thegeeklab/drone-docker-buildx:20
|
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.arm
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
2021-01-10 14:19:12 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
2020-10-17 14:08:36 +00:00
|
|
|
- refs/tags/**
|
2021-01-10 14:19:12 +00:00
|
|
|
- refs/pull/**
|
2020-10-17 14:08:36 +00:00
|
|
|
|
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:
|
2021-01-10 14:19:12 +00:00
|
|
|
- name: manifest-dockerhub
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
ignore_missing: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
spec: manifest.tmpl
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
2021-01-18 20:10:57 +00:00
|
|
|
- name: manifest-quay
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
ignore_missing: true
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
spec: manifest-quay.tmpl
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
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
|
2021-01-18 20:10:57 +00:00
|
|
|
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
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}
|
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:
|
2021-01-10 14:22:47 +00:00
|
|
|
- build-container-amd64
|
|
|
|
- build-container-arm64
|
|
|
|
- build-container-arm
|
2020-02-22 15:21:17 +00:00
|
|
|
|
2021-01-10 14:27:29 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-01-22 10:28:49 +00:00
|
|
|
hmac: a29790fab71a1ebb5dd6904c898ccd4e3137b40f0014b763eb22fc6ede074547
|
2021-01-10 14:27:29 +00:00
|
|
|
|
2020-02-22 15:21:17 +00:00
|
|
|
...
|