From fba5ef3e1bec2257a0b0daab9c7427791fc29217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hrdli=C4=8Dka?= Date: Wed, 1 Sep 2021 15:37:32 +0200 Subject: [PATCH] cmake: strip release builds --- .github/workflows/cmake.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 7ff2216da..294442bf4 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -37,10 +37,13 @@ jobs: build: - name: Regular preset: regular + target: install/strip - name: Debug preset: debug + target: install - name: Dev preset: experimental + target: install environment: - msystem: MINGW32 prefix: mingw-w64-i686 @@ -74,7 +77,7 @@ jobs: -D CMAKE_INSTALL_PREFIX=./build/artifacts -D VNC=OFF - name: Build - run: cmake --build build --target install + run: cmake --build build --target ${{ matrix.build.target }} - uses: actions/upload-artifact@v2 with: name: '86Box-${{ matrix.build.name }}-MSYS2-${{ matrix.environment.msystem }}-${{ github.sha }}'