diff options
author | Frederick Muriuki Muriithi | 2025-07-21 14:20:42 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-07-21 14:20:42 -0500 |
commit | a81f3d1fc8b7dd503025aa8751dd9473ab1412ec (patch) | |
tree | 4ed4219072455837e7c967b40b49f0546c5d48a9 | |
parent | de09b20ef02680d71e0685ccf72d815e7542cb18 (diff) | |
download | gn-machines-a81f3d1fc8b7dd503025aa8751dd9473ab1412ec.tar.gz |
gn-libs: Use HTTP(s) URI rather than local file paths
Replace the local file path with a HTTP(s) URI in order to avoid problems with file permissions. This has the added benefit that the git server can be on a completely different (physical) host than the one that the CI/CD container runs in.
-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 95c9ede..54cc353 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -124,7 +124,7 @@ be imported into G-expressions." (gn-auth-repository genenetwork-configuration-gn-auth-repository (default "https://git.genenetwork.org/gn-auth")) (gn-libs-repository genenetwork-configuration-gn-libs-repository - (default "/home/git/public/gn-libs")) + (default "https://git.genenetwork.org/gn-libs")) (gn2-port genenetwork-configuration-gn2-port (default 8082)) (gn3-port genenetwork-configuration-gn3-port @@ -417,7 +417,8 @@ genenetwork3 source from the latest commit of @var{project}." #:variables (list (variable-specification (module '(gn-libs)) (name 'gn-libs))) - #:guix-daemon-uri %guix-daemon-uri)))))) + #:guix-daemon-uri %guix-daemon-uri))))) + (ci-jobs-trigger 'webhook)) (forge-project (name "gn-auth") (repository gn-auth-repository) |