emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#42077: closed (updated guix package build fails: tests/git-authentic


From: GNU bug Tracking System
Subject: bug#42077: closed (updated guix package build fails: tests/git-authenticate.log Error 1)
Date: Sun, 28 Jun 2020 21:34:01 +0000

Your message dated Sun, 28 Jun 2020 23:33:06 +0200
with message-id <87h7uueuzx.fsf@gnu.org>
and subject line Re: bug#42077: updated guix package build fails: 
tests/git-authenticate.log Error 1
has caused the debbugs.gnu.org bug report #42077,
regarding updated guix package build fails: tests/git-authenticate.log Error 1
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
42077: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=42077
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: updated guix package build fails: tests/git-authenticate.log Error 1 Date: Sat, 27 Jun 2020 09:41:38 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hi,

On current master (35691bf5dc69e4d482b31fab63e3bd73ffece755, and "some
time" earlier), updating guix (see attached patch) and running

--8<---------------cut here---------------start------------->8---
./pre-inst-env guix build guix --keep-failed --verbosity=1
--8<---------------cut here---------------end--------------->8---

fails like so

--8<---------------cut here---------------start------------->8---
PASS: tests/gexp.scm
SKIP: tests/git.scm
make[4]: *** [Makefile:5274: tests/git-authenticate.log] Error 1
make[4]: Leaving directory '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
make[3]: *** [Makefile:5256: check-TESTS] Error 2
make[3]: Leaving directory '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
make[2]: *** [Makefile:5505: check-am] Error 2
make[2]: Leaving directory '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
make[1]: *** [Makefile:5033: check-recursive] Error 1
make[1]: Leaving directory '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
make: *** [Makefile:5507: check] Error 2

Test suite failed, dumping logs.
command "make" "check" failed with status 2
--8<---------------cut here---------------end--------------->8---

Contents of 
/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source/tests/git-authenticate.log:

--8<---------------cut here---------------start------------->8---
Backtrace:
           2 (primitive-load-path "tests/git-authenticate.scm")
In ice-9/eval.scm:
    259:9  1 (_ #f)
In unknown file:
           0 (search-path ("/tmp/guix-build-guix-1.1.0-13.35691b…" …) …)

ERROR: In procedure search-path:
Wrong type (expecting string): #f
test-name: unsigned commits
location: 
/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source/tests/git-authenticate.scm:43
source:
+ (test-assert
+   "unsigned commits"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (add "b.txt" "B")
+       (commit "second commit"))
+     (with-repository
+       directory
+       repository
+       (let ((commit1 (find-commit repository "first"))
+             (commit2 (find-commit repository "second")))
+         (guard (c ((unsigned-commit-error? c)
+                    (oid=? (git-authentication-error-commit c)
+                           (commit-id commit1))))
+                (authenticate-commits
+                  repository
+                  (list commit1 commit2)
+                  #:keyring-reference
+                  "master")
+                'failed)))))
result: SKIP
--8<---------------cut here---------------end--------------->8---

Greetings,
Janneke

>From bc29c78ac33d9f4e037bbe2a8104873a5644df57 Mon Sep 17 00:00:00 2001
From: "Jan (janneke) Nieuwenhuizen" <janneke@gnu.org>
Date: Thu, 7 May 2020 18:25:26 +0200
Subject: [PATCH] gnu: guix: Update to 1.1.0-13.35691bf5dc6.

* gnu/packages/package-management.scm (guix): Update to 1.1.0-13.35691bf5dc6
---
 gnu/packages/package-management.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index bfecf110ca..bf5e59fb4b 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -118,8 +118,8 @@
   ;; Note: the 'update-guix-package.scm' script expects this definition to
   ;; start precisely like this.
   (let ((version "1.1.0")
-        (commit "c00564192a9924ab2218c243342963aba89d67d1")
-        (revision 12))
+        (commit "35691bf5dc69e4d482b31fab63e3bd73ffece755")
+        (revision 13))
     (package
       (name "guix")
 
@@ -135,7 +135,7 @@
                       (commit commit)))
                 (sha256
                  (base32
-                  "008ywpdkc5f2jh25x6rr9glzvq4a6qih7v73w5dbxscpddx5c5g2"))
+                  "0hh31lbbbmjkwlxvp4fzrdz0r8p9233h2zlf71r4gccsjqh16pra"))
                 (file-name (string-append "guix-" version "-checkout"))))
       (build-system gnu-build-system)
       (arguments
-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com

-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com

--- End Message ---
--- Begin Message --- Subject: Re: bug#42077: updated guix package build fails: tests/git-authenticate.log Error 1 Date: Sun, 28 Jun 2020 23:33:06 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hey!

Jan Nieuwenhuizen <janneke@gnu.org> skribis:

> On current master (35691bf5dc69e4d482b31fab63e3bd73ffece755, and "some
> time" earlier), updating guix (see attached patch) and running
>
> ./pre-inst-env guix build guix --keep-failed --verbosity=1
>
>
> fails like so
>
> PASS: tests/gexp.scm
> SKIP: tests/git.scm
> make[4]: *** [Makefile:5274: tests/git-authenticate.log] Error 1
> make[4]: Leaving directory 
> '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
> make[3]: *** [Makefile:5256: check-TESTS] Error 2
> make[3]: Leaving directory 
> '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
> make[2]: *** [Makefile:5505: check-am] Error 2
> make[2]: Leaving directory 
> '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
> make[1]: *** [Makefile:5033: check-recursive] Error 1
> make[1]: Leaving directory 
> '/tmp/guix-build-guix-1.1.0-13.35691bf.drv-0/source'
> make: *** [Makefile:5507: check] Error 2
>
> Test suite failed, dumping logs.
> command "make" "check" failed with status 2

Oops, fixed in 0a8dd8aae5fad365c2f429d48e4085a3b3388332.

Thanks,
Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]