Skip to content

Commit

Permalink
Don't try to install i386 packages
Browse files Browse the repository at this point in the history
  • Loading branch information
messmerd committed Jan 18, 2025
1 parent 93bf64f commit 1c66e22
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deps-ubuntu-24.04-arm64-gcc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ g++
g++-multilib
libasound2-dev
libc6-dev
libc6-dev-i386
libfftw3-dev
libfltk1.3-dev
libfluidsynth-dev
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/setup-wine.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/bin/sh

# Enable i386 packages on x86_64 for 32-bit VST support
if [ "$(uname -m)" == "x86_64" ]; then
sudo dpkg --add-architecture i386
fi

# Add WineHQ APT repo
sudo dpkg --add-architecture i386
sudo apt-get install --yes wget
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
Expand Down

0 comments on commit 1c66e22

Please sign in to comment.