diff options
author | saturneric <[email protected]> | 2025-04-17 09:54:52 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-17 11:46:35 +0000 |
commit | b43417f38e7e0f15ca230d0deea65d5023a1484a (patch) | |
tree | 8d11b387908c3512817969836ea6123751c7ac8d | |
parent | feat: switch text-based model to workspace-based model (diff) | |
download | GpgFrontend-b43417f38e7e0f15ca230d0deea65d5023a1484a.tar.gz GpgFrontend-b43417f38e7e0f15ca230d0deea65d5023a1484a.zip |
fix: remove -Wincompatible-pointer-types from gpgme build on windows
-rw-r--r-- | .github/workflows/testing-nightly.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/testing-nightly.yml b/.github/workflows/testing-nightly.yml index a2f778ed..20c65b15 100644 --- a/.github/workflows/testing-nightly.yml +++ b/.github/workflows/testing-nightly.yml @@ -117,7 +117,8 @@ jobs: binutils zip unzip - libintl + libintl + texinfo msys2-runtime-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-gcc @@ -169,7 +170,9 @@ jobs: 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 + export CFLAGS="${CFLAGS} -Wno-int-conversion -Wno-incompatible-pointer-types" + ./configure --enable-maintainer-mode --enable-languages=cl --disable-gpg-test --enable-w32-glib + make -j4 make install if: runner.os == 'Windows' |