From 784a34ed8c77d6db71ad142f9a137dc5cbcfc0ab Mon Sep 17 00:00:00 2001 From: Davide Depau Date: Sat, 18 Apr 2020 04:16:36 +0200 Subject: [PATCH] Initial commit --- .drone.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..96a395f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,40 @@ +--- +kind: pipeline +type: docker +name: aarch64 + +platform: + os: linux + arch: arm64 + +steps: + - name: build-package + image: depau/drone-makepkg:aarch64 + settings: + #aur: aurpackage-git + #repo: https://gitlab.manjaro.org/manjaro-arm/packages/...git + #install_outputs: yes # default + #install: 'pkg1,pkg2,pkg3' + #pkgbuild: ./PKGBUILD # default + #auto_makeflags: yes # default + +--- +kind: pipeline +type: docker +name: x86_64 + +platform: + os: linux + arch: amd64 + +steps: + - name: build-package + image: depau/drone-makepkg:x86_64 + settings: + #aur: aurpackage-git + #repo: https://gitlab.manjaro.org/manjaro-arm/packages/...git + #install_outputs: yes # default + #install: 'pkg1,pkg2,pkg3' + #pkgbuild: ./PKGBUILD # default + #auto_makeflags: yes # default +