1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
---
kind: pipeline
type: docker
name: arm64
platform:
os: linux
arch: arm64
steps:
- name: arm64v8-fedora
image: arm64v8/fedora
commands:
- uname -a
- dnf install -y --repo fedora gcc bash make file git automake autoconf which
libtool perl-Text-Diff pkgconf-pkg-config
- build-aux/autogen.sh
- build-aux/conf-make-check.sh
# https://docker-runner.docs.drone.io/configuration/trigger/
trigger:
branch:
- aarch64-m1
- archs
- master
- relprep
---
kind: pipeline
type: docker
name: arm32
platform:
os: linux
arch: arm
steps:
- name: arm32v7-debian
image: arm32v7/debian
commands:
- uname -a
- apt-get update -qq
- apt-get install -yq --no-install-suggests --no-install-recommends
build-essential file bash gcc make autotools-dev automake autoconf libtool
libtext-diff-perl pkg-config
- build-aux/conf-make-check.sh
trigger:
branch:
- aarch64-m1
- archs
- master
- relprep
|