Update ubuntu CI to use ubuntu 22.04 #22
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 Ubuntu CI | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compilation | |
run: | | |
sudo dpkg --add-architecture i386 && sudo apt update | |
sudo apt install aptitude | |
sudo aptitude remove -y '?narrow(?installed,?version(deb.sury.org))' | |
cd wine-tkg-git | |
sed -i 's/distro=""/distro="debuntu"/' customization.cfg | |
sed -i 's/_NOLIB32="false"/_NOLIB32="wow64"/' wine-tkg-profiles/advanced-customization.cfg | |
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-tkg-build | |
path: wine-tkg-git/non-makepkg-builds |