aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-02-06 10:01:31 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-02-06 10:01:31 -0500
commit0045b844eb7b85f0de8630d17ff6d7e5f82b14ca (patch)
treef0e522d658227dc36277a84f1cc0dc4846ced083 /include
parentc7a376dbca61432a6fd78641a4f7957ec6007279 (diff)
downloadstasis-0045b844eb7b85f0de8630d17ff6d7e5f82b14ca.tar.gz
Begin consolidating artifactory upload procedures
* User-defined file patterns are still not implemented
Diffstat (limited to 'include')
-rw-r--r--include/deliverable.h8
1 files changed, 8 insertions, 0 deletions
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];