[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: Add to the hardcoded list of valid targets
From: |
Christopher Baines |
Subject: |
05/07: Add to the hardcoded list of valid targets |
Date: |
Fri, 11 Mar 2022 08:28:39 -0500 (EST) |
cbaines pushed a commit to branch master
in repository data-service.
commit df4e0a7a616fcea9c15f4c2af85680ab0e0ec55b
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Fri Mar 11 11:50:10 2022 +0000
Add to the hardcoded list of valid targets
Since the hardcoded list in the load-new-guix-revision code has been
updated.
---
guix-data-service/model/derivation.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/guix-data-service/model/derivation.scm
b/guix-data-service/model/derivation.scm
index 3c5d0fb..f09435e 100644
--- a/guix-data-service/model/derivation.scm
+++ b/guix-data-service/model/derivation.scm
@@ -64,9 +64,13 @@
(define (valid-targets conn)
'("arm-linux-gnueabihf"
"aarch64-linux-gnu"
+ "mips64el-linux-gnu"
"powerpc-linux-gnu"
+ "powerpc64le-linux-gnu"
"riscv64-linux-gnu"
- "i586-pc-gnu"))
+ "i586-pc-gnu"
+ "i686-w64-mingw32"
+ "x86_64-w64-mingw32"))
(define (count-derivations conn)
(first
- branch master updated (fe556f4 -> c067918), Christopher Baines, 2022/03/11
- 01/07: Compute more cross derivations, Christopher Baines, 2022/03/11
- 04/07: Extract out the code for starting an inferior, Christopher Baines, 2022/03/11
- 06/07: Close the load revision inferior prior to inserting data, Christopher Baines, 2022/03/11
- 07/07: Fix an issue with the /builds page, Christopher Baines, 2022/03/11
- 02/07: Disable value history in the inferior repl, Christopher Baines, 2022/03/11
- 03/07: Process each system target pair individually, Christopher Baines, 2022/03/11
- 05/07: Add to the hardcoded list of valid targets,
Christopher Baines <=