Skip to content

Commit

Permalink
ci: fix ubuntu-latest i386 repo
Browse files Browse the repository at this point in the history
  • Loading branch information
mochaaP committed Jan 9, 2025
1 parent 38d4f02 commit 797109c
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build-linux-cmake:
name: CMake Build ${{ matrix.platform.name }} ${{ matrix.compiler.name }} ${{ matrix.flavor }} (${{ matrix.mode.name }})
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
fail-fast: false
Expand All @@ -35,9 +35,7 @@ jobs:
- if: matrix.platform.name == 'x86'
name: Bootstrap
run: |
sudo dpkg --add-architecture i386
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get install -y g++-multilib g++
sudo apt-get update && sudo apt-get install -y g++-multilib-i686-linux-gnu
- name: Configure
env:
Expand All @@ -54,7 +52,7 @@ jobs:
build-linux-meson:
name: Meson Build ${{ matrix.platform.name }} ${{ matrix.compiler.name }} ${{ matrix.flavor }} (${{ matrix.mode.name }})
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
fail-fast: false
Expand Down Expand Up @@ -84,9 +82,7 @@ jobs:
- if: matrix.platform.name == 'x86'
name: Bootstrap
run: |
sudo dpkg --add-architecture i386
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get install -y g++-multilib g++
sudo apt-get update && sudo apt-get install -y g++-multilib-i686-linux-gnu
- name: Configure
env:
Expand Down

0 comments on commit 797109c

Please # to comment.