docker-archlinux-daily/.drone.yml
Davide Depau d408745d04
Some checks reported errors
continuous-integration/drone/push Build was killed
Remove typo
2020-04-16 20:38:22 +02:00

58 lines
900 B
YAML

---
kind: pipeline
type: docker
name: alarm-aarch64
platform:
os: linux
arch: arm64
node:
qemu: no
steps:
- name: build-image
image: plugins/docker
environment:
TZ: Europe/Rome
settings:
dockerfile: Dockerfile.aarch64
build_args:
- --platform
- linux/arm64
purge: true
username: depau
password:
from_secret: docker_password
repo: depau/archlinux-daily
tags:
- aarch64
---
kind: pipeline
type: docker
name: archlinux-x86_64
platform:
os: linux
arch: amd64
node:
qemu: no
steps:
- name: build-image
image: plugins/docker
environment:
TZ: Europe/Rome
settings:
dockerfile: Dockerfile.x86_64
purge: true
username: depau
password:
from_secret: docker_password
repo: depau/archlinux-daily
tags:
- latest
- x86_64