Wine Arch Linux CI #2335
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
sed -i 's/wayland_driver="false"/wayland_driver="true"/' customization.cfg | |
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 |