2022-03-28 14:27:19 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
2022-03-28 14:59:42 +00:00
|
|
|
trigger:
|
|
|
|
repo:
|
|
|
|
include:
|
|
|
|
- AUR/linux-vfio
|
|
|
|
|
2022-03-28 14:27:19 +00:00
|
|
|
steps:
|
2022-03-28 14:59:42 +00:00
|
|
|
- name: Fetch Upstream
|
|
|
|
image: archlinux:base-devel
|
|
|
|
commands:
|
|
|
|
- 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
|
2022-03-28 14:27:19 +00:00
|
|
|
commands:
|
2022-03-28 14:59:42 +00:00
|
|
|
- pacman -Syu --noconfirm
|
|
|
|
- MAKEFLAGS="-j$(nproc)" makepkg --syncdeps
|