aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/testing-nightly.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/testing-nightly.yml')
-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