From 1acb82121be8d8be4d423aeb13e11597e5403ecf Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 10 Apr 2024 09:08:40 -0400 Subject: 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 --- include/deliverable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') 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; -- cgit