diff options
author | Frederick Muriuki Muriithi | 2025-07-08 11:51:59 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-07-21 14:19:35 -0500 |
commit | de09b20ef02680d71e0685ccf72d815e7542cb18 (patch) | |
tree | b627e4a87f9e7bf9ad53b13b1faf3673bfe210c9 | |
parent | 56b4dde13ca178a79a7833f7ab1ce2a836e08002 (diff) | |
download | gn-machines-de09b20ef02680d71e0685ccf72d815e7542cb18.tar.gz |
gn-auth: Use http(s) URI rather than local file path.
Use HTTP(s) URIs rather than local file paths in order to avoid problems with file permissions. Re-activate the webhook for gn-auth to allow manual triggering.
-rw-r--r-- | genenetwork-development.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index f841255..95c9ede 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -122,7 +122,7 @@ be imported into G-expressions." (gn3-repository genenetwork-configuration-gn3-repository (default "https://github.com/genenetwork/genenetwork3")) (gn-auth-repository genenetwork-configuration-gn-auth-repository - (default "/home/git/public/gn-auth")) + (default "https://git.genenetwork.org/gn-auth")) (gn-libs-repository genenetwork-configuration-gn-libs-repository (default "/home/git/public/gn-libs")) (gn2-port genenetwork-configuration-gn2-port @@ -453,7 +453,8 @@ genenetwork3 source from the latest commit of @var{project}." #:variables (list (variable-specification (module '(gn-auth)) (name 'gn-auth-all-tests))) - #:guix-daemon-uri %guix-daemon-uri))))))))) + #:guix-daemon-uri %guix-daemon-uri))))) + (ci-jobs-trigger 'webhook))))) (define (genenetwork2-cd-gexp config) "Return a G-expression that runs the latest genenetwork2 development |