mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 13:35:38 +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
|
- name: Setup Linux dependencies
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: |
|
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
|
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 \
|
sudo apt-get install -y \
|
||||||
gcc-multilib \
|
gcc-multilib \
|
||||||
g++-multilib \
|
g++-multilib \
|
||||||
|
|
Loading…
Reference in a new issue