Skip to content

Commit

Permalink
fix(ci): Install proper libraries for x86 Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
timniederhausen committed Oct 11, 2023
1 parent 7a90a3a commit 4b819e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
ldflags: "-m32"
libflags: "-m32"
os: ubuntu-20.04
install: "g++-multilib"
# https://github.com/actions/runner-images/issues/2324#issuecomment-749985726
install: "gcc-multilib"
ninja_release_name: v1.11.1/ninja-linux.zip

- slug: linux-amd64
Expand All @@ -64,7 +65,7 @@ jobs:
steps:
- name: Install packages
if: matrix.install
run: sudo apt install ${{ matrix.install }}
run: sudo apt update && sudo apt install ${{ matrix.install }}

- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 4b819e8

Please sign in to comment.