aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-28 23:09:26 +0000
committersaturneric <[email protected]>2024-07-28 23:09:26 +0000
commit1f26949320181b7eeb0aa2c790ca894f24e7e507 (patch)
tree36358021af2b64b069fbe9e86ef9652da030fc72 /.github
parentfix: set cflags at gpgme build on windows platform (diff)
downloadGpgFrontend-1f26949320181b7eeb0aa2c790ca894f24e7e507.tar.gz
GpgFrontend-1f26949320181b7eeb0aa2c790ca894f24e7e507.zip
fix: solve gpgme build issue on windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 78a28160..e7e97050 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -165,10 +165,9 @@ jobs:
- name: Build GpgME (Windows)
shell: msys2 {0}
run: |
- git clone --depth 1 --branch gpgme-1.18.0 git://git.gnupg.org/gpgme.git ${{github.workspace}}/third_party/gpgme
+ git clone --depth 1 --branch fix/1.18.0 https://git.bktus.com/GpgFrontend/gpgme.git ${{github.workspace}}/third_party/gpgme
cd ${{github.workspace}}/third_party/gpgme
./autogen.sh
- export CFLAGS="-g -O2 -w -mms-bitfields"
./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4
make install
cd ${{github.workspace}}