48 lines
782 B
YAML
48 lines
782 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/drone-makepkg
|
||
|
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/drone-makepkg
|
||
|
tags:
|
||
|
- x86_64
|