status: Be more defensive when looking for a log file.
* guix/store.scm (derivation-log-file): New procedure.o (log-file): Use it. * guix/status.scm (print-build-event): Use 'derivation-log-file' instead of 'log-file'. Check wheter the return value is #f.
This commit is contained in:
parent
258a6d944e
commit
fb94d82bc2
|
@ -24,10 +24,7 @@
|
||||||
#:autoload (guix build syscalls) (terminal-columns)
|
#:autoload (guix build syscalls) (terminal-columns)
|
||||||
#:use-module ((guix build download)
|
#:use-module ((guix build download)
|
||||||
#:select (nar-uri-abbreviation))
|
#:select (nar-uri-abbreviation))
|
||||||
#:use-module ((guix store)
|
#:use-module (guix store)
|
||||||
#:select (current-build-output-port
|
|
||||||
current-store-protocol-version
|
|
||||||
log-file))
|
|
||||||
#:use-module (guix derivations)
|
#:use-module (guix derivations)
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:use-module (srfi srfi-9)
|
#:use-module (srfi srfi-9)
|
||||||
|
@ -334,8 +331,13 @@ addition to build events."
|
||||||
(('build-failed drv . _)
|
(('build-failed drv . _)
|
||||||
(format port (failure (G_ "build of ~a failed")) drv)
|
(format port (failure (G_ "build of ~a failed")) drv)
|
||||||
(newline port)
|
(newline port)
|
||||||
(format port (info (G_ "View build log at '~a'.~%"))
|
(match (derivation-log-file drv)
|
||||||
(log-file #f drv)))
|
(#f
|
||||||
|
(format port (failure (G_ "Could not find build log for '~a'."))
|
||||||
|
drv))
|
||||||
|
(log
|
||||||
|
(format port (info (G_ "View build log at '~a'.")) log)))
|
||||||
|
(newline port))
|
||||||
(('substituter-started item _ ...)
|
(('substituter-started item _ ...)
|
||||||
(when (or print-log? (not (extended-build-trace-supported?)))
|
(when (or print-log? (not (extended-build-trace-supported?)))
|
||||||
(format port (info (G_ "substituting ~a...")) item)
|
(format port (info (G_ "substituting ~a...")) item)
|
||||||
|
|
|
@ -152,6 +152,7 @@
|
||||||
store-path-package-name
|
store-path-package-name
|
||||||
store-path-hash-part
|
store-path-hash-part
|
||||||
direct-store-path
|
direct-store-path
|
||||||
|
derivation-log-file
|
||||||
log-file))
|
log-file))
|
||||||
|
|
||||||
(define %protocol-version #x162)
|
(define %protocol-version #x162)
|
||||||
|
@ -1706,11 +1707,10 @@ syntactically valid store path."
|
||||||
(and (string-every %nix-base32-charset hash)
|
(and (string-every %nix-base32-charset hash)
|
||||||
hash))))))
|
hash))))))
|
||||||
|
|
||||||
(define (log-file store file)
|
(define (derivation-log-file drv)
|
||||||
"Return the build log file for FILE, or #f if none could be found. FILE
|
"Return the build log file for DRV, a derivation file name, or #f if it
|
||||||
must be an absolute store file name, or a derivation file name."
|
could not be found."
|
||||||
(cond ((derivation-path? file)
|
(let* ((base (basename drv))
|
||||||
(let* ((base (basename file))
|
|
||||||
(log (string-append (dirname %state-directory) ; XXX
|
(log (string-append (dirname %state-directory) ; XXX
|
||||||
"/log/guix/drvs/"
|
"/log/guix/drvs/"
|
||||||
(string-take base 2) "/"
|
(string-take base 2) "/"
|
||||||
|
@ -1721,6 +1721,12 @@ must be an absolute store file name, or a derivation file name."
|
||||||
((file-exists? log.bz2) log.bz2)
|
((file-exists? log.bz2) log.bz2)
|
||||||
((file-exists? log) log)
|
((file-exists? log) log)
|
||||||
(else #f))))
|
(else #f))))
|
||||||
|
|
||||||
|
(define (log-file store file)
|
||||||
|
"Return the build log file for FILE, or #f if none could be found. FILE
|
||||||
|
must be an absolute store file name, or a derivation file name."
|
||||||
|
(cond ((derivation-path? file)
|
||||||
|
(derivation-log-file file))
|
||||||
(else
|
(else
|
||||||
(match (valid-derivers store file)
|
(match (valid-derivers store file)
|
||||||
((derivers ...)
|
((derivers ...)
|
||||||
|
|
Loading…
Reference in New Issue