From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from atuin.qyliss.net (localhost [IPv6:::1]) by atuin.qyliss.net (Postfix) with ESMTP id 9B1931FD2B; Sat, 29 Nov 2025 19:47:11 +0000 (UTC) Received: by atuin.qyliss.net (Postfix, from userid 993) id B6DA21FCF8; Sat, 29 Nov 2025 19:47:08 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-26) on atuin.qyliss.net X-Spam-Level: X-Spam-Status: No, score=-0.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DMARC_PASS,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE autolearn=unavailable autolearn_force=no version=4.0.1 Received: from mail.cyberchaos.dev (mail.cyberchaos.dev [195.39.247.168]) by atuin.qyliss.net (Postfix) with ESMTPS id 129301FCF6 for ; Sat, 29 Nov 2025 19:47:08 +0000 (UTC) From: Yureka Lilian DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cyberchaos.dev; s=mail; t=1764445626; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=6+NJqTx60UBs6u+Hf57tC15yWwTJ27qaQjRPRLSIFio=; b=pKp548DQETmsE7CimZc2vHe+PnlJwM6nobFPw8nKTM5k9kQxs2jDHrR1Z+7Qrn0J6XUXa3 UP0wN3+5iLsP1GuCHCGJyqPkYx3uJg4pqUbHRCxzzT8E7r98X63T1kQ+au4uBx3x1mVuuh BeE7zc0paCdwfOCYbWj0K3aVn145THs= To: devel@spectrum-os.org Subject: [PATCH v4 01/10] release/checks/integration: temporarily disable networking tests Date: Sat, 29 Nov 2025 20:43:51 +0100 Message-ID: <20251129194404.37773-2-yureka@cyberchaos.dev> In-Reply-To: <20251129194404.37773-1-yureka@cyberchaos.dev> References: <20251129194404.37773-1-yureka@cyberchaos.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: PNFRDTDS53HTRXIDQ5HKKEQXSKSLYHWD X-Message-ID-Hash: PNFRDTDS53HTRXIDQ5HKKEQXSKSLYHWD X-MailFrom: yureka@cyberchaos.dev X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-devel.spectrum-os.org-0; header-match-devel.spectrum-os.org-1; header-match-devel.spectrum-os.org-2; header-match-devel.spectrum-os.org-3; header-match-devel.spectrum-os.org-4; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Yureka Lilian X-Mailman-Version: 3.3.9 Precedence: list List-Id: Patches and low-level development discussion Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The following commits only work as a series. Signed-off-by: Yureka Lilian --- release/checks/integration/meson.build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/release/checks/integration/meson.build b/release/checks/integration/meson.build index 7bf8f51..8938728 100644 --- a/release/checks/integration/meson.build +++ b/release/checks/integration/meson.build @@ -11,7 +11,12 @@ run_qemu = find_program('../../../scripts/run-qemu.sh') lib = static_library('spectrum-integration-test', 'lib.c') -foreach test : ['appimage', 'late-serial', 'networking', 'portal'] +foreach test : [ + 'appimage', + 'late-serial', + # 'networking', + 'portal', +] test(test, executable(test, test + '.c', link_with : lib), timeout : 400, args : [run_qemu]) -- 2.51.2