docker-archlinux-daily/.drone.yml

48 lines
786 B
YAML
Raw Permalink Normal View History

2020-04-09 15:47:31 +00:00
---
kind: pipeline
type: docker
2020-04-16 17:42:32 +00:00
name: alarm-aarch64
2020-04-16 04:24:35 +00:00
2020-04-09 15:47:31 +00:00
platform:
os: linux
2020-04-16 04:38:02 +00:00
arch: arm64
2020-04-09 15:47:31 +00:00
steps:
- name: build-image
image: plugins/docker
environment:
TZ: Europe/Rome
settings:
2020-04-16 17:18:54 +00:00
dockerfile: Dockerfile.aarch64
2020-04-09 15:47:31 +00:00
purge: true
username: depau
password:
from_secret: docker_password
repo: depau/archlinux-daily
tags:
- aarch64
2020-04-16 17:42:32 +00:00
---
kind: pipeline
type: docker
name: archlinux-x86_64
platform:
os: linux
arch: amd64
2020-04-16 18:38:22 +00:00
steps:
2020-04-16 17:42:32 +00:00
- 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