Update for 10.0 #37
Workflow file for this run
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: | |
workflow_dispatch: | |
push: | |
tags: | |
["v[0-9]+.[0-9]+", "v[0-9]+.[0-9]+.[0-9]+"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: archlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compilation | |
env: | |
XDG_CACHE_HOME: /tmp/.cache | |
run: | | |
echo -e "[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf | |
pacman -Syu --noconfirm base-devel sudo | |
cd wine-tkg-git | |
sed -i 's/pkgname=wine-tkg/pkgname=unofficial-wine-xiv/' non-makepkg-build.sh | |
for f in wine-tkg-userpatches/wine/*.patch; do mv "$f" "wine-tkg-userpatches/$(basename ${f%.patch}).mypatch"; done | |
echo '_ci_build="true"' >> customization.cfg | |
touch tarplz | |
yes|./non-makepkg-build.sh | |
- name: Archive the artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wine-xiv-arch | |
path: wine-tkg-git/non-makepkg-builds |