Lime3DS/.ci/windows.sh
2024-08-18 18:11:25 +01:00

17 lines
373 B
Bash

#!/bin/sh -ex
mkdir build && cd build
cmake .. -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DENABLE_QT_TRANSLATION=ON \
-DUSE_DISCORD_PRESENCE=ON
ninja
ninja bundle
strip -s bundle/*.exe
ccache -s -v
ctest -VV -C Release || echo "::error ::Test error occurred on Windows build"