set appimage CMAKE_BUILD_TYPE to Release

This commit is contained in:
MihailRis 2025-01-13 19:39:12 +03:00
parent f772d527e2
commit d3e2ad5e99

View File

@ -32,11 +32,11 @@ jobs:
# install EnTT # install EnTT
git clone https://github.com/skypjack/entt.git git clone https://github.com/skypjack/entt.git
cd entt/build cd entt/build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. cmake -DCMAKE_BUILD_TYPE=Release ..
sudo make install sudo make install
cd ../.. cd ../..
- name: Configure - name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVOXELENGINE_BUILD_APPDIR=1 -DVOXELENGINE_BUILD_TESTS=ON run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_APPDIR=1 -DVOXELENGINE_BUILD_TESTS=ON
- name: Build - name: Build
run: cmake --build build -t install run: cmake --build build -t install
- name: Run tests - name: Run tests