diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-04-09 14:25:50 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-04-09 14:26:38 +0200 |
commit | 931572d230cf7c6d638cf59532a750dc7c0586a4 (patch) | |
tree | 05fe90ac2408f483f27f6cd15e45e8f8377487b6 | |
parent | a365777ebd6296e548422da57de0c2884114fd8d (diff) |
gnu: cuirass: Disable tests on aarch64.
* gnu/packages/ci.scm (cuirass)[arguments]: Disable tests on aarch64.
-rw-r--r-- | gnu/packages/ci.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/ci.scm b/gnu/packages/ci.scm index cdd397d167..030fc73ef9 100644 --- a/gnu/packages/ci.scm +++ b/gnu/packages/ci.scm @@ -77,6 +77,11 @@ (ice-9 rdelim) (ice-9 popen)) #:configure-flags '("--localstatedir=/var") ;for /var/log/cuirass + ;; XXX: HTTP tests fail on aarch64 due to Fibers errors, disable them + ;; on that architecture for now. + #:tests? ,(let ((s (or (%current-target-system) + (%current-system)))) + (not (string-prefix? "aarch64" s))) #:parallel-tests? #f #:phases (modify-phases %standard-phases |