diff options
author | Arun Isaac | 2022-02-24 17:35:22 +0530 |
---|---|---|
committer | Arun Isaac | 2022-02-28 17:41:09 +0530 |
commit | b413019ac6db063440572a7ac3b6ee5f18466330 (patch) | |
tree | 27acb45c744882f97e365aab2ccd9dc71d06b338 /forge/forge.scm | |
parent | 05cac2662459a9432e4ab441069629ffea27a392 (diff) | |
download | guix-forge-b413019ac6db063440572a7ac3b6ee5f18466330.tar.gz guix-forge-b413019ac6db063440572a7ac3b6ee5f18466330.tar.lz guix-forge-b413019ac6db063440572a7ac3b6ee5f18466330.zip |
forge: Thunk ci-jobs and run fields.
These fields need to be thunked to allow the user access to
this-record accessors when describing jobs.
* forge/forge.scm (<forge-project-configuration>)[ci-jobs]: Thunk
field.
* forge/laminar.scm (<forge-laminar-job>)[run]: Thunk field.
Diffstat (limited to 'forge/forge.scm')
-rw-r--r-- | forge/forge.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forge/forge.scm b/forge/forge.scm index 71af1ad..1336509 100644 --- a/forge/forge.scm +++ b/forge/forge.scm @@ -74,7 +74,7 @@ (website-directory forge-project-configuration-website-directory (default #f)) (ci-jobs forge-project-configuration-ci-jobs - (default '())) + (default '()) (thunked)) (ci-jobs-trigger forge-project-configuration-ci-jobs-trigger ; one of 'post-receive-hook, 'cron, 'webhook (default (cond ;; 'post-receive-hook for local repositories |