unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#33672: weather: still ugly 502-error and confusing ci.guix.info
@ 2018-12-08  8:09 swedebugia
  2018-12-08  8:37 ` Ricardo Wurmus
  0 siblings, 1 reply; 3+ messages in thread
From: swedebugia @ 2018-12-08  8:09 UTC (permalink / raw)
  To: 33672

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

Hi

I'm running guix from source in guixsd. 
sdb@antelope ~/src/guix$ ./pre-inst-env guix describe
Git checkout:
  repository: /home/sdb/src/guix
  branch: master
  commit: 3d53869e302540cb9a80cdcbbabea2b67200c0c5

This is the output of my config. (it is attached). My config does NOT
have ci.guix.info

sdb@antelope ~/src/guix$ ./pre-inst-env guix weather -m
~/config/os-manifest.scm
computing 414 package derivations for i686-linux...
looking for 588 store items on https://ci.guix.info...
updating substitutes from 'https://ci.guix.info'... 100.0%
https://ci.guix.info
  98.3% substitutes available (578 out of 588)
  567.3 MiB of nars (compressed)
  2,141.8 MiB on disk (uncompressed)
  0.013 seconds per request (7.4 seconds in total)
  79.2 requests per second
  'https://ci.guix.info/api/queue?nr=1000' returned 502 ("Bad Gateway")
   ^ could we hide this error if it does not matter for the results?

Forcing the --substitute-urls gives:

sdb@antelope ~/src/guix$ ./pre-inst-env guix weather -m
~/config/os-manifest.scm --substitute-urls="http://berlin.guixsd.org"
computing 414 package derivations for i686-linux...
looking for 588 store items on http://berlin.guixsd.org...
updating substitutes from 'http://berlin.guixsd.org'... 100.0%
http://berlin.guixsd.org
  98.3% substitutes available (578 out of 588)
  567.3 MiB of nars (compressed)
  2,141.8 MiB on disk (uncompressed)
  0.044 seconds per request (25.7 seconds in total)
  22.9 requests per second
  'http://berlin.guixsd.org/api/queue?nr=1000' returned 502 ("Bad
Gateway")

-- 
Cheers 
Swedebugia

[-- Attachment #2: os-manifest.scm --]
[-- Type: text/plain, Size: 2781 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce where the
;; root partition is encrypted with LUKS.

;; (use-modules (gnu) (gnu system nss))
;; (use-service-modules desktop networking)
;; (use-package-modules certs gnome)

;; (operating-system
;;   (host-name "antelope")
;;   (timezone "Europe/Paris")
;;   (locale "en_US.utf8")

;;   ;; Use the UEFI variant of GRUB with the EFI System
;;   ;; Partition mounted on /boot/efi.
;;   (bootloader (bootloader-configuration
;;                 (bootloader grub-bootloader)
;; 		(target "/dev/sda")))

;;   (file-systems (cons (file-system
;;                         (device (file-system-label "my-root"))
;;                         (mount-point "/")
;;                         (type "ext4"))
;; 		      %base-file-systems))

;;   (swap-devices '("/dev/sda2"))

;;   (users (cons (user-account
;;                 (name "sdb")
;;                 (comment "Alice's brother")
;;                 (group "users")
;;                 (supplementary-groups '("wheel" "netdev"
;;                                         "audio" "video"))
;;                 (home-directory "/home/sdb"))
;;                %base-user-accounts))

;;   ;; This is where we specify system-wide packages.
;;   (packages (cons* nss-certs         ;for HTTPS access
;;                    gvfs              ;for user mounts
;; 		   gnome-shell-extensions
;;                    %base-packages))

;;   ;; Add GNOME and/or Xfce---we can choose at the log-in
;;   ;; screen with F1.  Use the "desktop" services, which
;;   ;; include the X11 log-in service, networking with
;;   ;; NetworkManager, and more.
;;   (services (cons* (gnome-desktop-service)
;;                    ;;(xfce-desktop-service)
;; 		   (console-keymap-service "se-latin1")
;;                    (modify-services %desktop-services      ; Add berlin as first priority 
;;                                                            ; substitute server
;;                                     (guix-service-type config =>
;;                                                        (guix-configuration
;;                                                         (inherit config)
;;                                                         (substitute-urls '(
;; 									   "https://berlin.guixsd.org https://mirror.hydra.gnu.org"))))
;; 				    (network-manager-service-type config =>
;; 								  (network-manager-configuration
;; 								   (inherit config)
;; 								   (vpn-plugins
;; 								    '(openvpn)))))))

;;   ;; Allow resolution of '.local' host names with mDNS.
;;   (name-service-switch %mdns-host-lookup-nss))

(specifications->manifest
 '(
   "gnome"
   "gnome-shell-extensions"
   "gvfs"
   "nss-certs"
   "network-manager-openvpn"
   ))

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#33672: weather: still ugly 502-error and confusing ci.guix.info
  2018-12-08  8:09 bug#33672: weather: still ugly 502-error and confusing ci.guix.info swedebugia
@ 2018-12-08  8:37 ` Ricardo Wurmus
  2018-12-08 23:12   ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2018-12-08  8:37 UTC (permalink / raw)
  To: swedebugia; +Cc: 33672


Hi swedebugia,

>   'https://ci.guix.info/api/queue?nr=1000' returned 502 ("Bad Gateway")
>    ^ could we hide this error if it does not matter for the results?

Currently there’s a problem with the shepherd on
berlin.guixsd.org/ci.guix.info.

--
Ricardo

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#33672: weather: still ugly 502-error and confusing ci.guix.info
  2018-12-08  8:37 ` Ricardo Wurmus
@ 2018-12-08 23:12   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2018-12-08 23:12 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 33672-done

Hello,

Ricardo Wurmus <rekado@elephly.net> skribis:

>>   'https://ci.guix.info/api/queue?nr=1000' returned 502 ("Bad Gateway")
>>    ^ could we hide this error if it does not matter for the results?
>
> Currently there’s a problem with the shepherd on
> berlin.guixsd.org/ci.guix.info.

This has been fixed a few hours ago.

However note that Cuirass is currently slow to handle requests like the
one above and often times out.  This has been discussed recently:

  https://lists.gnu.org/archive/html/guix-devel/2018-11/msg00184.html

Anyway, closing this bug!

Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-08 23:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-08  8:09 bug#33672: weather: still ugly 502-error and confusing ci.guix.info swedebugia
2018-12-08  8:37 ` Ricardo Wurmus
2018-12-08 23:12   ` Ludovic Courtès

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).