Compare commits

...

No commits in common. "test" and "env" have entirely different histories.
test ... env

2 changed files with 8 additions and 92 deletions

View File

@ -1,108 +1,26 @@
---
kind: pipeline
name: build-amd64
platform:
os: linux
arch: amd64
name: one
steps:
- name: build
pull: always
image: spritsail/docker-build
settings:
repo: thisisatestbuildamd64
- name: test
pull: never
image: thisisatestbuildamd64
image: alpine
commands:
- 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
- env | sort
---
kind: pipeline
name: build-arm64
platform:
os: linux
arch: arm64
name: two
steps:
- name: build
pull: always
image: spritsail/docker-build
settings:
repo: thisisatestbuildarm64
- name: test
pull: never
image: thisisatestbuildarm64
image: alpine
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
- env | sort
- false
---
kind: signature
hmac: b91ccfe31caf41e29e513ff66196177b7892722d376489d096589ab7ec6fe9f8
hmac: b7cd1a6bf1ec21accbe3dd5f1eba4acc32b69778191b83cb4ceaf003eed80176
...

View File

@ -1,2 +0,0 @@
FROM alpine
CMD [ "uname", "-m" ]