From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 23 17:49:07 2020 Received: (at 41839) by debbugs.gnu.org; 23 Jun 2020 21:49:07 +0000 Received: from localhost ([127.0.0.1]:37300 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jnqmx-0005Dp-8X for submit@debbugs.gnu.org; Tue, 23 Jun 2020 17:49:07 -0400 Received: from eggs.gnu.org ([209.51.188.92]:45682) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jnqmv-0005DD-K9 for 41839@debbugs.gnu.org; Tue, 23 Jun 2020 17:49:05 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40749) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jnqmq-0002yJ-6A; Tue, 23 Jun 2020 17:49:00 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=58504 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jnqmo-0000CC-0v; Tue, 23 Jun 2020 17:48:58 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Mathieu Othacehe Subject: Re: [bug#41839] [PATCH 2/2] ci: Build Guix System images. References: <20200613194140.10367-1-othacehe@gnu.org> <20200613194140.10367-2-othacehe@gnu.org> Date: Tue, 23 Jun 2020 23:48:56 +0200 In-Reply-To: <20200613194140.10367-2-othacehe@gnu.org> (Mathieu Othacehe's message of "Sat, 13 Jun 2020 21:41:40 +0200") Message-ID: <87o8p9xxkn.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 41839 Cc: Mathieu Othacehe , 41839@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Mathieu Othacehe skribis: > Build a list of Guix System images. For now, this list only contains the = Hurd > barebones Guix System image. > > * gnu/ci.scm (%guixsd-supported-systems): Remove "armhf-linux", > (%u-boot-systems): remove unused variable, > (%guix-system-images): new variable > (qemu-jobs): rename to "image-jobs" and build the Guix Systems listed in = the > new "%guix-system-images" variable, > (system-test-jobs): adapt accordingly, > (hydra-jobs): ditto. Cool. > + (if (member system %guix-system-supported-systems) > + `(,(->job 'usb-image > + (build-image > + (image > + (inherit efi-disk-image) > + (size (* 1500 MiB)) > + (operating-system installation-os)))) > + ,(->job 'iso9660-image > + (build-image > + (image > + (inherit iso9660-image) > + (operating-system installation-os)))) > + ,@(map (lambda (image) > + (->job (image-name image) (build-image image))) > + %guix-system-images)) > '())) I think the effect is that we=E2=80=99ll also cross-build GNU/Hurd images f= rom i686-linux, right? It would be nice to avoid that and only cross-build from x86_64. Otherwise LGTM, thank you! Ludo=E2=80=99.