aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-29 14:53:59 +0000
committersaturneric <[email protected]>2024-07-29 14:53:59 +0000
commit3003692aafe0d7b986a643c8df843886f6073c25 (patch)
tree4a28069d6e4513b086596ca262e2a794f737d2ac /.github
parentfix: add some missing dlls (diff)
downloadGpgFrontend-3003692aafe0d7b986a643c8df843886f6073c25.tar.gz
GpgFrontend-3003692aafe0d7b986a643c8df843886f6073c25.zip
feat: switch to build type 'application only' in order to speed up build on windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 200b9d1a..f06ef971 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -273,12 +273,12 @@ jobs:
echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> ${GITHUB_ENV}
if: matrix.os == 'ubuntu-20.04'
- - name: Configure CMake & Build Binary (Windows)
+ - name: Configure CMake & Build Application (Windows)
shell: msys2 {0}
run: |
cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://')
mkdir build && cd build
- cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_STABLE=ON ..
+ cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_ONLY_APPLICATION=ON ..
cmake --build . --config ${{env.BUILD_TYPE}} -- -j 4
if: matrix.os == 'windows-2019'