azahar/.ci/windows.sh

23 lines
506 B
Bash
Raw Permalink Normal View History

#!/bin/sh -ex
mkdir build && cd build
if [ "$GITHUB_REF_TYPE" == "tag" ]; then
export EXTRA_CMAKE_FLAGS=(-DENABLE_QT_UPDATE_CHECKER=ON)
fi
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 \
"${EXTRA_CMAKE_FLAGS[@]}"
ninja
ninja bundle
2024-04-29 18:41:28 -06:00
strip -s bundle/*.exe
ccache -s -v
ctest -VV -C Release || echo "::error ::Test error occurred on Windows build"