drone-docker-buildx/.drone.yml

400 lines
7.6 KiB
YAML
Raw Normal View History

---
kind: pipeline
2021-01-10 23:47:55 +01:00
name: test
platform:
os: linux
arch: amd64
steps:
2021-01-10 23:47:55 +01:00
- name: staticcheck
image: golang:1.16
2021-01-10 23:47:55 +01:00
commands:
- go run honnef.co/go/tools/cmd/staticcheck ./...
volumes:
- name: gopath
path: /go
- name: lint
image: golang:1.16
2021-01-10 23:47:55 +01:00
commands:
- go run golang.org/x/lint/golint -set_exit_status ./...
volumes:
- name: gopath
path: /go
- name: vet
image: golang:1.16
commands:
- go vet ./...
2019-02-10 13:26:22 +01:00
volumes:
- name: gopath
path: /go
- name: test
image: golang:1.16
commands:
- go test -cover ./...
2019-02-10 13:26:22 +01:00
volumes:
- name: gopath
path: /go
volumes:
- name: gopath
temp: {}
2021-01-10 23:47:55 +01:00
image_pull_secrets:
- docker_config
trigger:
2019-02-10 13:26:22 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
- refs/pull/**
2019-08-09 19:44:41 +02:00
---
kind: pipeline
2021-01-10 23:47:55 +01:00
name: build-binaries
2019-08-09 19:44:41 +02:00
platform:
2021-01-10 23:47:55 +01:00
os: linux
arch: amd64
2019-08-09 19:44:41 +02:00
steps:
- name: build
image: techknowlogick/xgo:go-1.16.x
2019-08-09 19:44:41 +02:00
commands:
2021-01-10 23:47:55 +01:00
- "[ -z \"${DRONE_TAG}\" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}"
- mkdir -p release/
2021-02-15 20:31:22 +01:00
- cd cmd/drone-docker-buildx && xgo -ldflags "-s -w -X main.version=$BUILD_VERSION" -tags netgo -targets 'linux/amd64,linux/arm-6,linux/arm-7,linux/arm64' -out drone-docker-buildx .
2021-01-10 23:47:55 +01:00
- mv /build/* /drone/src/release/
2021-02-15 20:31:22 +01:00
- ls -l /drone/src/release/
2019-08-13 22:35:12 +02:00
2021-01-10 23:47:55 +01:00
- name: executable
image: alpine
2019-08-13 22:35:12 +02:00
commands:
2021-01-10 23:47:55 +01:00
- $(find release/ -executable -type f | grep drone-docker-buildx-linux-amd64) --help
2019-08-13 22:35:12 +02:00
2021-01-10 23:47:55 +01:00
- name: compress
image: alpine
commands:
- apk add upx
- find release/ -maxdepth 1 -executable -type f -exec upx {} \;
- ls -lh release/
2020-03-12 18:46:57 +01:00
2021-01-10 23:47:55 +01:00
- name: checksum
image: alpine
commands:
- cd release/ && sha256sum * > sha256sum.txt
2020-03-12 18:46:57 +01:00
- name: changelog-generate
2021-02-15 10:46:58 +01:00
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
- name: changelog-format
image: thegeeklab/alpine-tools
commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
2021-01-10 23:47:55 +01:00
- name: publish
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
- release/*
note: CHANGELOG.md
overwrite: true
title: ${DRONE_TAG}
when:
ref:
- refs/tags/**
2020-03-12 18:46:57 +01:00
2021-01-10 23:47:55 +01:00
image_pull_secrets:
- docker_config
2020-03-12 18:46:57 +01:00
trigger:
2021-01-10 23:47:55 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
- refs/pull/**
2020-03-12 18:46:57 +01:00
depends_on:
2021-01-10 23:47:55 +01:00
- test
2020-03-12 18:46:57 +01:00
---
kind: pipeline
2021-01-10 23:47:55 +01:00
name: build-container-amd64
platform:
os: linux
arch: amd64
steps:
2021-01-10 23:47:55 +01:00
- name: build
image: golang:1.16
2019-01-22 23:12:12 +01:00
commands:
2021-01-10 23:47:55 +01:00
- "[ -z \"${DRONE_TAG}\" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}"
- go build -v -ldflags "-X main.version=$BUILD_VERSION" -a -tags netgo -o release/amd64/drone-docker-buildx ./cmd/drone-docker-buildx
2019-01-22 23:12:12 +01:00
2019-01-21 01:05:01 +01:00
- name: dryrun
2021-01-10 23:47:55 +01:00
image: plugins/docker:19
settings:
2021-01-10 23:47:55 +01:00
config:
from_secret: docker_config
dockerfile: docker/Dockerfile.amd64
dry_run: true
password:
from_secret: docker_password
2021-01-10 23:47:55 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
2021-01-10 23:47:55 +01:00
ref:
- refs/pull/**
depends_on:
- build
2021-01-10 23:47:55 +01:00
- name: publish-dockerhub
image: plugins/docker:19
settings:
auto_tag: true
2021-01-10 23:47:55 +01:00
auto_tag_suffix: amd64
config:
from_secret: docker_config
dockerfile: docker/Dockerfile.amd64
password:
2019-01-21 01:05:01 +01:00
from_secret: docker_password
2021-01-10 23:47:55 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
2019-01-21 01:05:01 +01:00
from_secret: docker_username
when:
2021-01-10 23:47:55 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
depends_on:
- dryrun
2021-01-10 23:47:55 +01:00
- name: publish-quay
image: plugins/docker:19
settings:
auto_tag: true
2021-01-10 23:47:55 +01:00
auto_tag_suffix: amd64
config:
from_secret: docker_config
dockerfile: docker/Dockerfile.amd64
password:
2021-01-10 23:47:55 +01:00
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
2021-01-10 23:47:55 +01:00
from_secret: quay_username
when:
2021-01-10 23:47:55 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
depends_on:
- dryrun
image_pull_secrets:
- docker_config
2019-01-21 01:05:01 +01:00
trigger:
2019-02-10 13:26:22 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
- refs/pull/**
2019-01-21 01:05:01 +01:00
depends_on:
2021-01-10 23:47:55 +01:00
- test
2019-01-21 01:05:01 +01:00
---
kind: pipeline
2021-01-10 23:47:55 +01:00
name: build-container-arm64
platform:
os: linux
2021-01-10 23:47:55 +01:00
arch: arm64
steps:
2021-01-10 23:47:55 +01:00
- name: build
image: golang:1.16
2019-01-22 23:12:12 +01:00
commands:
2021-01-10 23:47:55 +01:00
- "[ -z \"${DRONE_TAG}\" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}"
- go build -v -ldflags "-X main.version=$BUILD_VERSION" -a -tags netgo -o release/arm64/drone-docker-buildx ./cmd/drone-docker-buildx
2019-01-22 23:12:12 +01:00
- name: dryrun
2021-01-10 23:47:55 +01:00
image: plugins/docker:19
settings:
2021-01-10 23:47:55 +01:00
config:
from_secret: docker_config
dockerfile: docker/Dockerfile.arm64
dry_run: true
password:
from_secret: docker_password
2021-01-10 23:47:55 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
2021-01-10 23:47:55 +01:00
ref:
- refs/pull/**
depends_on:
- build
2021-01-10 23:47:55 +01:00
- name: publish-dockerhub
image: plugins/docker:19
settings:
auto_tag: true
2021-01-10 23:47:55 +01:00
auto_tag_suffix: arm64
config:
from_secret: docker_config
dockerfile: docker/Dockerfile.arm64
password:
from_secret: docker_password
2021-01-10 23:47:55 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
2021-01-10 23:47:55 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
depends_on:
- dryrun
2021-01-10 23:47:55 +01:00
- name: publish-quay
image: plugins/docker:19
2019-02-10 13:26:22 +01:00
settings:
2019-03-27 13:39:24 +01:00
auto_tag: true
2021-01-10 23:47:55 +01:00
auto_tag_suffix: arm64
config:
from_secret: docker_config
dockerfile: docker/Dockerfile.arm64
2019-02-10 13:26:22 +01:00
password:
2021-01-10 23:47:55 +01:00
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
2019-02-10 13:26:22 +01:00
username:
2021-01-10 23:47:55 +01:00
from_secret: quay_username
when:
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
depends_on:
- dryrun
2019-02-10 13:26:22 +01:00
2021-01-10 23:47:55 +01:00
image_pull_secrets:
- docker_config
2019-02-10 13:26:22 +01:00
trigger:
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
- refs/pull/**
2019-02-10 13:26:22 +01:00
depends_on:
2021-01-10 23:47:55 +01:00
- test
2019-02-10 13:26:22 +01:00
---
kind: pipeline
2021-01-10 23:47:55 +01:00
name: notifications
platform:
os: linux
2021-01-10 23:47:55 +01:00
arch: amd64
steps:
2021-01-10 23:47:55 +01:00
- name: manifest-dockerhub
image: plugins/manifest
settings:
auto_tag: true
2021-01-10 23:47:55 +01:00
ignore_missing: true
password:
from_secret: docker_password
2021-01-10 23:47:55 +01:00
spec: docker/manifest.tmpl
username:
from_secret: docker_username
when:
2021-01-10 23:47:55 +01:00
status:
- success
2019-02-10 13:26:22 +01:00
2021-01-10 23:47:55 +01:00
- name: manifest-quay
2019-02-10 13:26:22 +01:00
image: plugins/manifest
settings:
2019-03-27 13:39:24 +01:00
auto_tag: true
2019-02-10 13:26:22 +01:00
ignore_missing: true
password:
2021-01-10 23:47:55 +01:00
from_secret: quay_password
spec: docker/manifest-quay.tmpl
2019-02-10 13:26:22 +01:00
username:
2021-01-10 23:47:55 +01:00
from_secret: quay_username
when:
status:
- success
2019-01-21 01:05:01 +01:00
2021-01-10 23:47:55 +01:00
- name: pushrm-dockerhub
image: chko/docker-pushrm:1
environment:
2021-01-10 23:47:55 +01:00
DOCKER_PASS:
from_secret: docker_password
DOCKER_USER:
from_secret: docker_username
PUSHRM_FILE: README.md
PUSHRM_SHORT: Drone plugin to build multiarch Docker images with buildx
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
when:
2021-01-10 23:47:55 +01:00
status:
- success
2021-01-10 23:47:55 +01:00
- name: pushrm-quay
image: chko/docker-pushrm:1
environment:
2021-01-10 23:47:55 +01:00
APIKEY__QUAY_IO:
from_secret: quay_token
PUSHRM_FILE: README.md
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
when:
2021-01-10 23:47:55 +01:00
status:
- success
2021-01-10 23:47:55 +01:00
- name: matrix
image: plugins/matrix
settings:
2021-01-10 23:47:55 +01:00
homeserver:
from_secret: matrix_homeserver
password:
2021-01-10 23:47:55 +01:00
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:
2021-01-10 23:47:55 +01:00
from_secret: matrix_username
when:
2021-01-10 23:47:55 +01:00
status:
- success
- failure
2021-01-10 23:47:55 +01:00
image_pull_secrets:
- docker_config
2019-01-21 01:05:01 +01:00
trigger:
2019-02-10 13:26:22 +01:00
ref:
2021-01-10 23:53:07 +01:00
- refs/heads/main
2021-01-10 23:47:55 +01:00
- refs/tags/**
status:
- success
- failure
2019-01-21 01:05:01 +01:00
depends_on:
2021-01-10 23:47:55 +01:00
- build-binaries
- build-container-amd64
2021-01-11 00:29:54 +01:00
- build-container-arm64
2019-01-21 01:05:01 +01:00
---
2021-01-10 23:47:55 +01:00
kind: signature
hmac: d9ed315db5e0514b6151de65d4281802fad0882c5f71feff2f27a5686a794356
2021-01-10 23:47:55 +01:00
...