mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 09:05:29 +00:00
Merge pull request #116 from ekrctb/fix-i386
Workaround GitHub Action ubuntu-20.04 image issue
This commit is contained in:
commit
0b5cb56c74
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -27,8 +27,17 @@ jobs:
|
|||
- name: Setup Linux dependencies
|
||||
if: runner.os == 'Linux'
|
||||
run: |
|
||||
[[ ${{ matrix.platform.target_apt_arch }} == :i386 ]] && sudo dpkg --add-architecture i386
|
||||
if [[ ${{ matrix.platform.target_apt_arch }} == :i386 ]]; then
|
||||
sudo dpkg --add-architecture i386
|
||||
fi
|
||||
|
||||
sudo apt-get update -y -qq
|
||||
|
||||
if [[ ${{ matrix.platform.target_apt_arch }} == :i386 ]]; then
|
||||
# Workaround GitHub's ubuntu-20.04 image issue <https://github.com/actions/virtual-environments/issues/4589>
|
||||
sudo apt-get install -y --allow-downgrades libpcre2-8-0=10.34-7
|
||||
fi
|
||||
|
||||
sudo apt-get install -y \
|
||||
gcc-multilib \
|
||||
g++-multilib \
|
||||
|
|
Loading…
Reference in a new issue