ci: use Ninja generator in hop of accelerating the build

This commit is contained in:
Anonymous Maarten 2022-11-01 15:28:57 +01:00 committed by Anonymous Maarten
parent 819b0143e3
commit 2e47016b01
1 changed files with 6 additions and 1 deletions

View File

@ -10,6 +10,10 @@ jobs:
- uses: mymindstorm/setup-emsdk@v10
with:
version: 2.0.32
- name: Install ninja
run: |
sudo apt-get -y update
sudo apt-get install -y ninja-build
- name: Configure CMake
run: |
emcmake cmake -S . -B build \
@ -17,7 +21,8 @@ jobs:
-DSDL_TESTS=ON \
-DSDL_INSTALL_TESTS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=prefix
-DCMAKE_INSTALL_PREFIX=prefix \
-GNinja
- name: Build
run: cmake --build build/ --verbose
- name: Run build-time tests