From 7164d71992f66240cf4d5c84fea1bd8835118b20 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Tue, 24 Jun 2025 09:05:39 +0200 Subject: [PATCH] ci: disable arch temporarily MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Will need to fix this soon. Lets temp remove arch to get results for the other systems. Build fail on Arch: ``` src/pgp/gpg.c: In function ‘p_gpg_decrypt’: src/pgp/gpg.c:659:36: error: implicit declaration of function ‘gpgme_key_get_string_attr’ [-Wimplicit-function-declaration] 659 | const char* addr = gpgme_key_get_string_attr(key, GPGME_ATTR_EMAIL, NULL, 0); | ^~~~~~~~~~~~~~~~~~~~~~~~~ src/pgp/gpg.c:659:67: error: ‘GPGME_ATTR_EMAIL’ undeclared (first use in this function) 659 | const char* addr = gpgme_key_get_string_attr(key, GPGME_ATTR_EMAIL, NULL, 0); | ^~~~~~~~~~~~~~~~ src/pgp/gpg.c:659:67: note: each undeclared identifier is reported only once for each function it appears in make[1]: *** [Makefile:2085: src/pgp/gpg.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make: *** [Makefile:1314: all] Error 2 ``` --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95560e36..3d33584c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - flavor: [arch, debian, fedora, ubuntu] + flavor: [debian, fedora, ubuntu] name: Linux steps: