aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-29 17:02:50 +0000
committersaturneric <[email protected]>2024-07-29 17:02:50 +0000
commit256cb1eba477127f0d249c59a3462bffab0733a0 (patch)
treed35a7b6e9547466f45dda1631616aae536d089e2 /.github/workflows/release.yml
parentfix: brew install googletest (diff)
downloadGpgFrontend-256cb1eba477127f0d249c59a3462bffab0733a0.tar.gz
GpgFrontend-256cb1eba477127f0d249c59a3462bffab0733a0.zip
fix: need build google test separately as well
Diffstat (limited to '')
-rw-r--r--.github/workflows/release.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3c1401c0..2aa19efd 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -184,6 +184,15 @@ jobs:
sudo ninja install
if: matrix.os == 'windows-2019'
+ - name: Build googletest (Linux)
+ run: |
+ cd ${{github.workspace}}/third_party/googletest
+ mkdir build && cd build
+ cmake -G Ninja ..
+ ninja
+ sudo ninja install
+ if: matrix.os == 'ubuntu-20.04'
+
- name: Build & Install Full SDK
run: |
cmake -B ${{github.workspace}}/build-full-sdk -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_FULL_SDK=ON