aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-04-16 18:10:35 +0000
committersaturneric <[email protected]>2025-04-16 18:10:35 +0000
commit6f9a451ae3746f39f43b9151db3183de677604b3 (patch)
treeeb928ab88940df7343f40ce4cced2cae3522f53d
parentfix: testing and solve bugs found (diff)
downloadGpgFrontend-6f9a451ae3746f39f43b9151db3183de677604b3.tar.gz
GpgFrontend-6f9a451ae3746f39f43b9151db3183de677604b3.zip
fix: build gpgme 1.24.2 separately on windows
-rw-r--r--.github/workflows/testing-nightly.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/testing-nightly.yml b/.github/workflows/testing-nightly.yml
index 8b0bf223..d94f0174 100644
--- a/.github/workflows/testing-nightly.yml
+++ b/.github/workflows/testing-nightly.yml
@@ -162,6 +162,16 @@ jobs:
cd ${{github.workspace}}
if: runner.os == 'Linux'
+ - name: Build GpgME (Windows)
+ shell: msys2 {0}
+ run: |
+ git clone --depth 1 --branch gpgme-1.24.2 git://git.gnupg.org/gpgme.git ${{github.workspace}}/third_party/gpgme
+ cd ${{github.workspace}}/third_party/gpgme
+ ./autogen.sh
+ ./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4
+ make install
+ if: runner.os == 'Windows'
+
- name: Build googletest (Linux)
run: |
git clone --depth 1 --branch v1.15.2 https://github.com/google/googletest.git ${{github.workspace}}/third_party/googletest