drone-test/.drone.yml

109 lines
1.7 KiB
YAML
Raw Permalink Normal View History

2018-03-16 02:31:56 +00:00
---
kind: pipeline
2019-06-23 09:53:23 +00:00
name: build-amd64
platform:
os: linux
arch: amd64
2018-03-16 02:31:56 +00:00
steps:
2019-06-23 09:53:23 +00:00
- name: build
pull: always
image: spritsail/docker-build
settings:
repo: thisisatestbuildamd64
2018-03-16 02:31:56 +00:00
- name: test
2019-06-23 09:53:23 +00:00
pull: never
image: thisisatestbuildamd64
2018-03-16 02:31:56 +00:00
commands:
2019-06-23 09:53:23 +00:00
- uname -m
- name: publish
pull: always
image: spritsail/docker-publish
settings:
from: thisisatestbuildamd64
repo: frebib/drone-test
tags:
- latest-amd64
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
---
kind: pipeline
name: build-arm64
platform:
os: linux
arch: arm64
steps:
- name: build
pull: always
image: spritsail/docker-build
settings:
repo: thisisatestbuildarm64
- name: test
pull: never
image: thisisatestbuildarm64
commands:
- uname -m
- name: publish
pull: always
image: spritsail/docker-publish
settings:
from: thisisatestbuildarm64
repo: frebib/drone-test
tags:
- latest-arm64
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
---
kind: pipeline
name: manifest
platform:
os: linux
# arch doesn't matter- whatever is free
clone:
disable: true
steps:
- name: push-manifest
pull: always
image: plugins/manifest
settings:
platforms: linux/amd64,linux/arm64
template: frebib/drone-test:latest-ARCH
target: frebib/drone-test:latest
when:
status:
- success
- failure
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
depends_on:
- build-amd64
- build-arm64
2018-03-16 02:31:56 +00:00
---
kind: signature
2019-06-23 09:53:23 +00:00
hmac: b91ccfe31caf41e29e513ff66196177b7892722d376489d096589ab7ec6fe9f8
2018-03-16 02:31:56 +00:00
...