From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 089CC1061B13 for ; Mon, 30 Mar 2026 16:17:58 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.1267858.1557326 (Exim 4.92) (envelope-from ) id 1w7FJ9-0001By-OH; Mon, 30 Mar 2026 16:17:43 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 1267858.1557326; Mon, 30 Mar 2026 16:17:43 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1w7FJ9-0001Br-L0; Mon, 30 Mar 2026 16:17:43 +0000 Received: by outflank-mailman (input) for mailman id 1267858; Mon, 30 Mar 2026 16:17:41 +0000 Received: from mx.expurgate.net ([195.190.135.10]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1w7FJ7-0001Bc-NH for xen-devel@lists.xenproject.org; Mon, 30 Mar 2026 16:17:41 +0000 Received: from mx.expurgate.net (helo=localhost) by mx.expurgate.net with esmtp id 1w7FJ6-00Ey33-L7 for xen-devel@lists.xenproject.org; Mon, 30 Mar 2026 18:17:40 +0200 Received: from [10.42.69.12] (helo=localhost) by localhost with ESMTP (eXpurgate MTA 0.9.1) (envelope-from ) id 69caa212-e002-0a2a0a5209dd-0a2a450cba5a-36 for ; Mon, 30 Mar 2026 18:17:40 +0200 Received: from [160.101.131.8] (helo=na1pdmzitismtp01.tibco.com) by tlsNG-d25034.mxtls.expurgate.net with ESMTPS (eXpurgate 4.55.2) (envelope-from ) id 69caa223-f93d-0a2a450c0019-a0658308eab6-3 for ; Mon, 30 Mar 2026 18:17:40 +0200 Received: from localhost.localdomain (unknown [10.113.40.46]) by na1pdmzitismtp01.tibco.com (Postfix) with ESMTPS id 7358541B69BC; Mon, 30 Mar 2026 12:17:03 -0400 (EDT) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" Authentication-Results: eu.smtp.expurgate.cloud; none From: =?UTF-8?q?Edwin=20T=C3=B6r=C3=B6k?= To: xen-devel@lists.xenproject.org Cc: =?UTF-8?q?Edwin=20T=C3=B6r=C3=B6k?= , Andrew Cooper , Anthony PERARD , Michal Orzel , Jan Beulich , Julien Grall , =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= , Stefano Stabellini , Doug Goldstein Subject: [PATCH v1 0/5] run unit tests in the CI Date: Mon, 30 Mar 2026 17:17:23 +0100 Message-ID: X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-purgate-ID: tlsNG-d25034/1774887460-6D4B6734-EA63D5D6/0/0 X-purgate-type: clean X-purgate-size: 1662 Currently the unit tests aren't run in the CI during the build. Introduce a 'make check' rule that can run them all (in parallel if `-j` is specified). To make reading the CI output easier make's `-O` flag is used (which buffers output per target, making it obvious which command failed). TBD: what is the actual minimum version of binutils required by the existing tests, because Ubuntu 16.04 with binutil 2.26.1 failed. That version of Ubuntu is EoL in a few days, so it is dropped from the CI build step. The actual containers and the xilinx-arm64 jobs are kept for now (although these should be updated to use bionic). A followup patch series will rearrange the unit test make rules, so it is useful to test that all the unit tests worked both prior and following that change on all supported platforms in the CI. For convenience this series is also available as a git repository: https://gitlab.com/xen-project/people/edwintorok/xen/-/tree/private/edvint/run-ci?ref_type=heads Edwin Török (5): README: update minimum make to 4.1 CI: drop Ubuntu 16.04 tools/test: introduce a 'make check' rule automation/scripts/build: run unit tests in the CI automation/scripts/build: group command output from parallel jobs Makefile | 4 ++++ README | 2 +- automation/gitlab-ci/build.yaml | 10 ---------- automation/scripts/build | 10 ++++++---- tools/Makefile | 4 ++++ tools/Rules.mk | 2 +- tools/tests/Makefile | 20 +++++++++++++++++++- 7 files changed, 35 insertions(+), 17 deletions(-) -- 2.47.3