From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37396) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gd1e2-0003T1-7p for guix-patches@gnu.org; Fri, 28 Dec 2018 18:34:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gd1QA-0007gS-E9 for guix-patches@gnu.org; Fri, 28 Dec 2018 18:20:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:38887) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gd1QA-0007fX-AG for guix-patches@gnu.org; Fri, 28 Dec 2018 18:20:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gd1Q9-0001WT-T8 for guix-patches@gnu.org; Fri, 28 Dec 2018 18:20:01 -0500 Subject: [bug#33515] [PATCH 0/5] Cuirass/Hydra: evaluate jobs in an inferior Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20181126163757.17399-1-ludo@gnu.org> <87bm56aniw.fsf@gnu.org> <87bm56waau.fsf@netris.org> Date: Sat, 29 Dec 2018 00:19:12 +0100 In-Reply-To: <87bm56waau.fsf@netris.org> (Mark H. Weaver's message of "Thu, 27 Dec 2018 23:21:18 -0500") Message-ID: <877eft8cjz.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Mark H Weaver Cc: 33515@debbugs.gnu.org Hello, Mark H Weaver skribis: > Indeed, the evaluation eventually failed on hydra.gnu.org. I then > upgraded 'guix' in both root's and hydra's profiles to the latest > version and tried again. This time it failed almost immediately, with > the following error: > > evaluator hydra-eval-guile-jobs > hydra-eval-guile-jobs returned exit code 1: > adding `/gnu/store/y4m61z51s28kmiff2hzbr7xm6f4lsk80-git-export' to the lo= ad path > Backtrace: > In ice-9/eval.scm: > 293:34 19 (_ #) > In ice-9/boot-9.scm: > 2862:4 18 (define-module* _ #:filename _ #:pure _ #:version _ # _ ?) > 2875:24 17 (_) > 222:17 16 (map1 (((guix git)) ((guix records)) ((guix gexp)) (#) ?)) > 2788:17 15 (resolve-interface (guix git) #:select _ #:hide _ # _ # ?) > 2714:10 14 (_ (guix git) _ _ #:ensure _) > 2982:16 13 (try-module-autoload _ _) > 2312:4 12 (save-module-excursion #) > 3002:22 11 (_) > In unknown file: > 10 (primitive-load-path "guix/git" #) > In ice-9/eval.scm: > 721:20 9 (primitive-eval (define-module (guix git) #:use-module ?)) > In ice-9/psyntax.scm: > 1235:36 8 (expand-top-sequence ((define-module (guix git) # # ?)) ?) > 1182:24 7 (parse _ (("placeholder" placeholder)) ((top) #(# # ?)) ?) > 285:10 6 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) ?) > In ice-9/eval.scm: > 293:34 5 (_ #) > In ice-9/boot-9.scm: > 2862:4 4 (define-module* _ #:filename _ #:pure _ #:version _ # _ ?) > 2875:24 3 (_) > 222:17 2 (map1 (((git)) ((git object)) ((guix i18n)) ((guix ?)) ?)) > 2791:6 1 (resolve-interface _ #:select _ #:hide _ #:prefix _ # _ ?) > In unknown file: > 0 (scm-error misc-error #f "~A ~S" ("no code for modu?" ?) ?) > > ERROR: In procedure scm-error: > no code for module (git) I ran =E2=80=98guix pull=E2=80=99 and then installed guile-git in hydra=E2= =80=99s profile, which fixed this immediate issue. Now the evaluation failure is a bit more enigmatic: --8<---------------cut here---------------start------------->8--- XML or text declaration not at start of entity at line 2, column 0, byte 1 = at /usr/local/lib/perl5/site_perl/5.18.0/x86_64-linux/XML/Parser.pm line 18= 7. --8<---------------cut here---------------end--------------->8--- I=E2=80=99m guessing =E2=80=98hydra-eval-guile-jobs=E2=80=99 is not sending= proper XML, or perhaps we=E2=80=99re writing non-XML stuff to stdout that gets interspersed with valid XML. To be continued=E2=80=A6 Ludo=E2=80=99.