diff options
author | EuAndreh <eu@euandre.org> | 2024-08-13 14:37:08 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-13 14:37:08 -0300 |
commit | aacaada73b63036b7adda993b5239e56214dc867 (patch) | |
tree | f7c2b044d5fdd194968947f845a784f43cf464b0 /src | |
parent | queue.scm: Separate stdlib binaries into its own output (diff) | |
download | package-repository-aacaada73b63036b7adda993b5239e56214dc867.tar.gz package-repository-aacaada73b63036b7adda993b5239e56214dc867.tar.xz |
queue.scm: Render Go's timeout innefective by making it too large
Diffstat (limited to 'src')
-rw-r--r-- | src/org/euandre/queue.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm index 1c7149d..996e697 100644 --- a/src/org/euandre/queue.scm +++ b/src/org/euandre/queue.scm @@ -1722,13 +1722,13 @@ connections correctly."))) ;; Not all of us work with fancy modern computers that have have ;; too much memory and computing power for programmers to waste. ;; Therefore, Go's default timeout of 10 minutes (!!) to run all - ;; tests isn't enough, so we disable it and instead inherit the - ;; timeout from Guix itself. How not to like software that adheres - ;; so well to the Unix philosophy? + ;; tests isn't enough, so we disable it with an huge value and + ;; instead inherit the effective timeout from Guix itself. How not + ;; to like software that adheres so well to the Unix philosophy? (add-before 'build 'tolerate-slow-tests (lambda _ (let ((name "GO_TEST_TIMEOUT_SCALE") - (value "0")) + (value "1000")) (setenv name value) (format #t #$setenvfmt name value)))) (add-after 'install 'install-binaries @@ -1740,7 +1740,6 @@ connections correctly."))) - (list go-full pax-utils |