We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 272cf34 commit 6f9a451Copy full SHA for 6f9a451
.github/workflows/testing-nightly.yml
@@ -162,6 +162,16 @@ jobs:
162
cd ${{github.workspace}}
163
if: runner.os == 'Linux'
164
165
+ - name: Build GpgME (Windows)
166
+ shell: msys2 {0}
167
+ run: |
168
+ git clone --depth 1 --branch gpgme-1.24.2 git://git.gnupg.org/gpgme.git ${{github.workspace}}/third_party/gpgme
169
+ cd ${{github.workspace}}/third_party/gpgme
170
+ ./autogen.sh
171
+ ./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4
172
+ make install
173
+ if: runner.os == 'Windows'
174
+
175
- name: Build googletest (Linux)
176
run: |
177
git clone --depth 1 --branch v1.15.2 https://github.com/google/googletest.git ${{github.workspace}}/third_party/googletest
0 commit comments