From b2e63f2b49790b5078b7e31b53327e1104e70da7 Mon Sep 17 00:00:00 2001 From: Reg Tiangha Date: Mon, 29 Apr 2024 18:41:28 -0600 Subject: [PATCH] ci: Strip Clang binaries --- .ci/linux.sh | 1 + .ci/windows.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.ci/linux.sh b/.ci/linux.sh index a671a02c5..0fd5aab46 100755 --- a/.ci/linux.sh +++ b/.ci/linux.sh @@ -20,6 +20,7 @@ cmake .. -G Ninja \ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ -DUSE_DISCORD_PRESENCE=ON ninja +strip -s bin/Release/* if [ "$TARGET" = "appimage" ]; then ninja bundle diff --git a/.ci/windows.sh b/.ci/windows.sh index 825f6ca4e..db7ea6255 100644 --- a/.ci/windows.sh +++ b/.ci/windows.sh @@ -11,6 +11,7 @@ cmake .. -G Ninja \ -DUSE_DISCORD_PRESENCE=ON ninja ninja bundle +strip -s bundle/*.exe ccache -s -v