Lime3DS/.ci/windows.sh

19 lines
467 B
Bash
Raw Normal View History

#!/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 \
-DCITRA_ENABLE_COMPATIBILITY_REPORTING=ON \
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
-DUSE_DISCORD_PRESENCE=ON
ninja
ninja bundle
2024-04-30 02:41:28 +02:00
strip -s bundle/*.exe
ccache -s -v
ctest -VV -C Release || echo "::error ::Test error occurred on Windows build"