forked from AUR/linux-vfio
30 lines
830 B
YAML
30 lines
830 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: Fetch Upstream
|
|
image: archlinux:base-devel
|
|
commands:
|
|
- pacman -Sy git --noconfirm
|
|
- git remote add upstream https://git.tau.aperturect.com/AUR/linux-vfio.git
|
|
- git fetch upstream
|
|
- git merge upstream/master
|
|
- name: Build linux-vfio
|
|
image: archlinux:base-devel
|
|
commands:
|
|
- pacman -Syu --noconfirm
|
|
- pacman -Sy curl --noconfirm
|
|
- chmod +x setupbuild.sh
|
|
- sh setupbuild.sh
|
|
- gpg --keyserver keys.gnupg.net --recv-keys 3B94A80E50A477C7
|
|
- curl https://keybase.io/heftig/pgp_keys.asc | gpg --import
|
|
- su build
|
|
- sudo gpg --keyserver keys.gnupg.net --recv-keys 3B94A80E50A477C7
|
|
- sudo curl https://keybase.io/heftig/pgp_keys.asc | gpg --import
|
|
- MAKEFLAGS="-j$(nproc)" makepkg --syncdeps --noconfirm -f --skipinteg
|