From afe389886a7959d9c6a539318bb8e29529e12aef Mon Sep 17 00:00:00 2001 From: Shaquille Soekhlal Date: Mon, 28 Mar 2022 16:59:42 +0200 Subject: [PATCH] Update '.drone.yml' --- .drone.yml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7bda15f..ab525ec 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,9 +2,21 @@ kind: pipeline type: docker name: default +trigger: + repo: + include: + - AUR/linux-vfio + steps: -- name: greeting - image: archlinux +- name: Fetch Upstream + image: archlinux:base-devel commands: - - echo hello - - echo world \ No newline at end of file + - git remote add upstream https://git.tau.aperturect.com/AUR/linux-vfio.git + - git fetch upstream + - git merge upstream/main + - git push +- name: Build linux-vfio + image: archlinux:base-devel + commands: + - pacman -Syu --noconfirm + - MAKEFLAGS="-j$(nproc)" makepkg --syncdeps \ No newline at end of file