diff options
Diffstat (limited to 'genenetwork-development.scm')
-rw-r--r-- | genenetwork-development.scm | 10 |
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)) |