diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-10 09:08:40 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-10 09:08:40 -0400 |
commit | 1acb82121be8d8be4d423aeb13e11597e5403ecf (patch) | |
tree | 8aa536b01fe898ba79434a5167efdc1d2a3c122e /include | |
parent | 8c5bf74101b05ed36941c772f34681a3b8e42e65 (diff) | |
download | stasis-1acb82121be8d8be4d423aeb13e11597e5403ecf.tar.gz |
Stop duplicating the jfrog authentication context for each upload context.
* We only need one
* RAM isn't peppered with auth data
* The artifactory URL has been consolidated and exposed as a template variable: deploy.jfrog.url
Diffstat (limited to 'include')
-rw-r--r-- | include/deliverable.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/deliverable.h b/include/deliverable.h index d712d08..04967c8 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -156,9 +156,10 @@ struct Delivery { } tests[1000]; ///< An array of tests struct Deploy { + struct JFRT_Auth jfrog_auth; + struct JFrog { struct StrList *files; - struct JFRT_Auth auth_ctx; struct JFRT_Upload upload_ctx; char *repo; char *dest; |