summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-10-23 19:19:25 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-10-23 19:20:18 +0200
commit2fe2a0fadafa47718ae749065ef6f68befcdc6b3 (patch)
tree9e5d70a338e238f6180193a7caaa73144506e6f8
parent405aed501f39aaf4fbd5fc22976d58303719fcbf (diff)
Cuirass can’t work with the map function
-rw-r--r--guix/vkraus/modules/cuirass.scm89
1 files changed, 69 insertions, 20 deletions
diff --git a/guix/vkraus/modules/cuirass.scm b/guix/vkraus/modules/cuirass.scm
index aa283c9..9999dd2 100644
--- a/guix/vkraus/modules/cuirass.scm
+++ b/guix/vkraus/modules/cuirass.scm
@@ -15,23 +15,72 @@
(cuirass-configuration
(port 8089)
(specifications
- #~(map
- (lambda (the-branch)
- (specification
- (name "disfluid")
- (build '(channels disfluid-channel))
- (channels
- `(,(channel
- (name 'disfluid-channel)
- (url "file:///srv/git/webid-oidc-channel.git"))
- (channel
- (name 'guix)
- (url "/srv/git/guix.git")
- (branch the-branch)
- (introduction (make-channel-introduction
- "9edb3f66fd807b096b48283debdcddccfea34bad"
- (openpgp-fingerprint
- "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))))
- (systems
- '("x86_64-linux" "i686-linux"))))
- '("master" "core-updates" "core-updates-frozen" "core-updates-frozen-batched-changes"))))))
+ #~(list
+ (specification
+ (name "disfluid-master")
+ (build '(channels disfluid-channel))
+ (channels
+ `(,(channel
+ (name 'disfluid-channel)
+ (url "file:///srv/git/webid-oidc-channel.git"))
+ ,(channel
+ (name 'guix)
+ (url "/srv/git/guix.git")
+ (branch "master")
+ (introduction (make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ (openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))))
+ (systems
+ '("x86_64-linux" "i686-linux")))
+ (specification
+ (name "disfluid-core-updates")
+ (build '(channels disfluid-channel))
+ (channels
+ `(,(channel
+ (name 'disfluid-channel)
+ (url "file:///srv/git/webid-oidc-channel.git"))
+ ,(channel
+ (name 'guix)
+ (url "/srv/git/guix.git")
+ (branch "core-updates")
+ (introduction (make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ (openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))))
+ (systems
+ '("x86_64-linux" "i686-linux")))
+ (specification
+ (name "disfluid-core-updates-frozen")
+ (build '(channels disfluid-channel))
+ (channels
+ `(,(channel
+ (name 'disfluid-channel)
+ (url "file:///srv/git/webid-oidc-channel.git"))
+ ,(channel
+ (name 'guix)
+ (url "/srv/git/guix.git")
+ (branch "core-updates-frozen")
+ (introduction (make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ (openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))))
+ (systems
+ '("x86_64-linux" "i686-linux")))
+ (specification
+ (name "disfluid-core-updates-frozen-batched-changes")
+ (build '(channels disfluid-channel))
+ (channels
+ `(,(channel
+ (name 'disfluid-channel)
+ (url "file:///srv/git/webid-oidc-channel.git"))
+ ,(channel
+ (name 'guix)
+ (url "/srv/git/guix.git")
+ (branch "core-updates-frozen-batched-changes")
+ (introduction (make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ (openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))))
+ (systems
+ '("x86_64-linux" "i686-linux"))))))))