about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2023-10-28 01:50:19 +0100
committerArun Isaac2023-10-28 01:54:18 +0100
commitf14e21d68847cf433555649b3b0ed7159842ddeb (patch)
tree27bdf2ac72b75d53f058566cd51b7b4435f0b512
parente5633704bbfbd7c35af3b6ac76b213be9a88e006 (diff)
downloadgn-machines-f14e21d68847cf433555649b3b0ed7159842ddeb.tar.gz
Do not use upstream Guix in CI jobs.
* genenetwork-development.scm (genenetwork-projects): Remove default
upstream Guix channels.
-rw-r--r--genenetwork-development.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm
index fb8a6cf..62a9b9b 100644
--- a/genenetwork-development.scm
+++ b/genenetwork-development.scm
@@ -394,11 +394,10 @@ genenetwork3 source from the latest commit of @var{project}."
            (ci-jobs (list (forge-laminar-job
                            (name "genenetwork3")
                            (run (guix-channel-job-gexp
-                                 (cons (channel
+                                 (list (channel
                                         (name 'genenetwork3)
                                         (url (forge-project-repository this-forge-project))
-                                        (branch "main"))
-                                       %default-channels)
+                                        (branch "main")))
                                  #:guix-daemon-uri %guix-daemon-uri))
 			   ;; If tests run successfully, redeploy
 			   ;; genenetwork3 and trigger genenetwork2 tests.
@@ -437,11 +436,10 @@ genenetwork3 source from the latest commit of @var{project}."
            (ci-jobs (list (forge-laminar-job
                            (name "gn-auth")
                            (run (guix-channel-job-gexp
-                                 (cons (channel
+                                 (list (channel
                                         (name 'gn-auth)
                                         (url (forge-project-repository this-forge-project))
-                                        (branch "main"))
-                                       %default-channels)
+                                        (branch "main")))
                                  #:guix-daemon-uri %guix-daemon-uri))
                            ;; If unit tests pass, trigger the auth migrations.
                            (after (with-imported-modules '((guix build utils))