Skip to content

Wine Arch Linux CI #2188

Wine Arch Linux CI

Wine Arch Linux CI #2188

Workflow file for this run

name: Wine Arch Linux CI
on:
schedule:
- cron: '45 8,20 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- uses: actions/checkout@v4
- name: Compile
run: |
echo -e "[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
pacman -Syu --noconfirm base-devel sudo
useradd user -G wheel && echo "user ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
chown user -R . && cd wine-tkg-git
# Workaround for jack&jack2 conflict https://github.com/Frogging-Family/wine-tkg-git/issues/237
sed -i "/'jack2' 'lib32-jack2'/d" PKGBUILD
sed -i "/'gst-plugins-good' 'lib32-gst-plugins-good'/d" PKGBUILD
su user -c "yes|PKGDEST=/tmp/wine-tkg makepkg --noconfirm -s"
- name: Archive the artifacts
uses: actions/upload-artifact@v4
with:
name: wine-tkg-build
path: /tmp/wine-tkg