From 0045b844eb7b85f0de8630d17ff6d7e5f82b14ca Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Feb 2024 10:01:31 -0500 Subject: Begin consolidating artifactory upload procedures * User-defined file patterns are still not implemented --- include/deliverable.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include') diff --git a/include/deliverable.h b/include/deliverable.h index 75b5798..f97a73c 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -127,7 +127,15 @@ struct Delivery { struct Runtime runtime; ///< Environment variables specific to the test context } tests[1000]; ///< An array of tests + struct Deploy { + struct StrList *files; + struct JFRT_Auth auth_ctx; + struct JFRT_Upload upload_ctx; + char *repo; + } deploy; + struct Rule { + struct INIFILE *_handle; bool enable_final; ///< true=allow rc value replacement, false=keep rc value even if final release char *release_fmt; ///< Release generator format string struct Content content[1000]; -- cgit