docker-archlinux-daily/.drone.yml
Davide Depau 96f6f1d901
All checks were successful
continuous-integration/drone/push Build is passing
Remove node labels from CI config
2020-04-20 03:11:40 +02:00

48 lines
786 B
YAML

---
kind: pipeline
type: docker
name: alarm-aarch64
platform:
os: linux
arch: arm64
steps:
- name: build-image
image: plugins/docker
environment:
TZ: Europe/Rome
settings:
dockerfile: Dockerfile.aarch64
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
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:
- x86_64