Skip to content

Commit

Permalink
Fix linux build (missing deps)
Browse files Browse the repository at this point in the history
  • Loading branch information
s1lentq committed Nov 26, 2024
1 parent bdb3a06 commit 232c7ab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ jobs:
with:
fetch-depth: 0

- name: Check dependencies
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib g++-multilib
- name: Build
run: |
rm -rf build && CC=gcc CXX=g++ cmake -B build && cmake --build build -j8
Expand Down

0 comments on commit 232c7ab

Please sign in to comment.