From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur Subject: bug#32955: Cuirass: Some tests depend on 'guix-current', which makes them resource expensive Date: Sat, 06 Oct 2018 16:10:36 +0200 Message-ID: <87murr5foj.fsf@lassieur.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g8nIR-0007GV-Gn for bug-guix@gnu.org; Sat, 06 Oct 2018 10:11:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g8nIM-0006Jp-3m for bug-guix@gnu.org; Sat, 06 Oct 2018 10:11:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34458) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g8nIL-0006Jj-WF for bug-guix@gnu.org; Sat, 06 Oct 2018 10:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g8nIL-0004C8-Qa for bug-guix@gnu.org; Sat, 06 Oct 2018 10:11:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g8nI4-0007EH-5U for bug-guix@gnu.org; Sat, 06 Oct 2018 10:10:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g8nHz-00065L-9B for bug-guix@gnu.org; Sat, 06 Oct 2018 10:10:44 -0400 Received: from mail.lassieur.org ([83.152.10.219]:58228) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g8nHy-000625-U6 for bug-guix@gnu.org; Sat, 06 Oct 2018 10:10:39 -0400 Received: from rodion (88.191.118.83 [88.191.118.83]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id 93148a93 (TLSv1.2:ECDHE-RSA-CHACHA20-POLY1305:256:NO) for ; Sat, 6 Oct 2018 14:06:38 +0000 (UTC) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 32955@debbugs.gnu.org Hi, Tests depending on 'guix-current' are expensive in terms of CPU and storage usage since we need to build (current-guix) and then store a couple of full system images. They are built at each evaluation because they depend on 'guix-current'. (And they all fail.) test.btrfs-root-os.x86_64-linux test.encrypted-root-os.x86_64-linux test.installed-extlinux-os.x86_64-linux test.separate-home-os.x86_64-linux test.raid-root-os.x86_64-linux test.separate-store-os.x86_64-linux test.iso-image-installer.x86_64-linux test.installed-os.x86_64-linux =20=20=20=20 test.btrfs-root-os.i686-linux test.encrypted-root-os.i686-linux test.installed-extlinux-os.i686-linux test.separate-home-os.i686-linux test.raid-root-os.i686-linux test.separate-store-os.i686-linux test.iso-image-installer.i686-linux test.installed-os.i686-linux It seems that the reason is explained by that comment in gnu/tests/install.scm: ;; Since the image has no network access, use the ;; current Guix so the store items we need are in ;; the image and add packages provided. Is there another way to get those tests to work without depending on 'guix-current'? Cl=C3=A9ment