From 2fe2a0fadafa47718ae749065ef6f68befcdc6b3 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Sat, 23 Oct 2021 19:19:25 +0200 Subject: Cuirass can’t work with the map function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guix/vkraus/modules/cuirass.scm | 89 ++++++++++++++++++++++++++++++++--------- 1 file 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")))))))) -- cgit v1.2.3