File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -102,10 +102,13 @@ jobs:
102102 - name : Install wine
103103 run : |
104104 sudo dpkg --add-architecture i386
105- sudo mkdir -pm755 /etc/apt/keyrings
106- sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
107- sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
108- sudo apt install -y --install-recommends winehq-stable
105+ sudo sh -c "curl https://dl.winehq.org/wine-builds/winehq.key | gpg --dearmor > /etc/apt/trusted.gpg.d/winehq.gpg"
106+ sudo sh -c "apt-add-repository \"https://dl.winehq.org/wine-builds/ubuntu\""
107+ sudo apt update
108+ sudo apt-get install -yqq --allow-downgrades libgd3/jammy libpcre2-8-0/jammy libpcre2-16-0/jammy libpcre2-32-0/jammy libpcre2-posix2/jammy
109+ sudo apt-get purge -yqq libmono* moby* mono* php* libgdiplus libpcre2-posix3 libzip4
110+ echo "/opt/wine-staging/bin" >> $GITHUB_PATH
111+ sudo apt install -y --install-recommends wine-staging="7.17~jammy-1" wine-staging-i386="7.17~jammy-1" wine-staging-amd64="7.17~jammy-1"
109112
110113 - name : Test with pytest
111114 run : |
You can’t perform that action at this time.
0 commit comments