unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Chris Marusich <cmmarusich@gmail.com>
To: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Cc: guix-devel <guix-devel@gnu.org>, guix-maintainers@gnu.org
Subject: Re: GNU Guix 1.3.0rc2 available for testing!
Date: Wed, 12 May 2021 04:03:50 -0700	[thread overview]
Message-ID: <87r1ic5i3t.fsf@gmail.com> (raw)
In-Reply-To: <874kfdvuuu.fsf@gmail.com> (Maxim Cournoyer's message of "Sat, 08 May 2021 16:22:33 -0400")

[-- Attachment #1: Type: text/plain, Size: 4498 bytes --]

Hi,

Maxim Cournoyer <maxim.cournoyer@gmail.com> writes:

> A second RC for the upcoming 1.3.0 release is now available for testing:

Thank you for preparing it!

I tested the binary installation using the guix-install.sh script for
1.3.0 (not the rc2 candidate, but the actual 1.3.0 release, which I
noticed was on the FTP server already).  I tested on powerpc64le-linux
and found no major issues; it worked as expected.

I did "guix pull" and "guix build hello".  To my surprise, I received a
substitute:

marusich@guixtestbed:~$ guix build hello
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0%
0.1 MB will be downloaded:
   /gnu/store/zcs3cj0mqixwng2ldf92haab2vkpsicb-hello-2.10
substituting /gnu/store/zcs3cj0mqixwng2ldf92haab2vkpsicb-hello-2.10...
downloading from https://ci.guix.gnu.org/nar/lzip/zcs3cj0mqixwng2ldf92haab2vkpsicb-hello-2.10 ...
 hello-2.10  52KiB                    239KiB/s 00:00 [##################] 100.0%
/gnu/store/zcs3cj0mqixwng2ldf92haab2vkpsicb-hello-2.10

I guess something is building powerpc64le-linux substitutes?  I had
thought no substitutes would be available, but certainly it is not a
problem if substitutes are being built for powerpc64le-linux already.

I tried building from source on Debian 10 buster ppc64el.  It succeeded,
but "make check" reported one test failure.  It was in tests/go.scm:

--8<---------------cut here---------------start------------->8---
test-name: go-module->guix-package
location: /home/marusich/guix-1.3.0/tests/go.scm:254
source:
+ (test-equal
+   "go-module->guix-package"
+   '(package
+      (name "go-github-com-go-check-check")
+      (version "0.0.0-20201130134442-10cb98267c6c")
+      (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                 (url "https://github.com/go-check/check")
+                 (commit (go-version->git-ref version))))
+          (file-name (git-file-name name version))
+          (sha256
+            (base32
+              "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5"))))
+      (build-system go-build-system)
+      (arguments
+        '(#:import-path "github.com/go-check/check"))
+      (propagated-inputs
+        `(("go-github-com-kr-pretty"
+           ,go-github-com-kr-pretty)))
+      (home-page "https://github.com/go-check/check")
+      (synopsis "Instructions")
+      (description
+        "Package check is a rich testing extension for Go's testing package.")
+      (license license:bsd-2))
+   (call-with-temporary-directory
+     (lambda (checkout)
+       (mock ((web client)
+              http-get
+              (mock-http-get fixtures-go-check-test))
+             (mock ((guix http-client)
+                    http-fetch
+                    (mock-http-fetch fixtures-go-check-test))
+                   (mock ((guix git)
+                          update-cached-checkout
+                          (lambda* (url #:key ref)
+                            (values
+                              checkout
+                              (nix-base32-string->bytevector
+                                "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5")
+                              #f)))
+                         (go-module->guix-package
+                           "github.com/go-check/check")))))))
expected-value: (package (name "go-github-com-go-check-check") (version "0.0.0-20201130134442-10cb98267c6c") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/go-check/check") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5")))) (build-system go-build-system) (arguments (quote (#:import-path "github.com/go-check/check"))) (propagated-inputs (quasiquote (("go-github-com-kr-pretty" (unquote go-github-com-kr-pretty))))) (home-page "https://github.com/go-check/check") (synopsis "Instructions") (description "Package check is a rich testing extension for Go's testing package.") (license license:bsd-2))
actual-value: #f
actual-error:
+ (wrong-number-of-args
+   #f
+   "Wrong number of arguments to ~A"
+   (#<procedure html->sxml-0nf (input)>)
+   #f)
result: FAIL
--8<---------------cut here---------------end--------------->8---

Seems like an issue in code related to importing go packages.  I didn't
check if it was reported already.

-- 
Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

  parent reply	other threads:[~2021-05-12 11:06 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-08 20:22 GNU Guix 1.3.0rc2 available for testing! Maxim Cournoyer
2021-05-09 16:25 ` Leo Famulari
2021-05-10  0:46   ` Maxim Cournoyer
2021-05-10 14:49   ` Leo Famulari
2021-05-12 11:03 ` Chris Marusich [this message]
2021-05-14 16:07   ` Maxim Cournoyer
2021-06-03  8:46     ` Chris Marusich
2021-08-03 14:41       ` Maxim Cournoyer
2021-08-27 19:00       ` Maxim Cournoyer
2021-08-30 23:06         ` Patched shebangs in Autoconf-provided scripts Ludovic Courtès
2021-08-31  2:47           ` Maxim Cournoyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87r1ic5i3t.fsf@gmail.com \
    --to=cmmarusich@gmail.com \
    --cc=guix-devel@gnu.org \
    --cc=guix-maintainers@gnu.org \
    --cc=maxim.cournoyer@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).