From 6f9a451ae3746f39f43b9151db3183de677604b3 Mon Sep 17 00:00:00 2001 From: saturneric Date: Wed, 16 Apr 2025 20:10:35 +0200 Subject: fix: build gpgme 1.24.2 separately on windows --- .github/workflows/testing-nightly.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 -- cgit v1.2.3