Make arch pkg build work and add rsync
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Alexander Schäferdiek 2022-07-11 21:51:43 +02:00
parent 019a511671
commit 9531f2166f

View file

@ -1,4 +1,5 @@
kind: pipeline
type: docker
name: default
steps:
@ -7,10 +8,31 @@ steps:
commands:
- find usr/local/bin -type f -exec echo Testing {} \; -exec shellcheck {} \;
- name: build arch package
image: whynothugo/makepkg
environment:
SYNC_DATABASE: 1
image: archlinux/archlinux:base-devel
commands:
- cp -r /drone/src /pkg
- useradd -m build
- pacman -Syu --noconfirm
- pacman -Sy --noconfirm git
- cp -r /drone/src/_pkg/ /home/build/
- chown -R build:build /home/build
- cd /home/build/_pkg
- makepkg -cs
- sudo -u build makepkg -csf
- cp *.zst /drone/src/_pkg/
- name: upload to aur.myservermanager.com
image: drillster/drone-rsync
environment:
PLUGIN_ARGS: -zz
settings:
hosts:
- myservermanager.com
port: 2222
user: myservermanager-com
key:
from_secret: deploy_ssh_key
source: ./_pkg/*.zst
target: /srv/http/myservermanager.com/htdocs/aur/x86_64/
delete: true
recursive: true
when:
branch:
- master