Fix linux build (missing deps)
Some checks failed
C/C++ CI / Windows (push) Has been cancelled
C/C++ CI / Linux (push) Has been cancelled
C/C++ CI / Publish (push) Has been cancelled

This commit is contained in:
s1lentq 2024-11-27 00:40:31 +07:00
parent bdb3a06efb
commit 232c7ab1df

View File

@ -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