diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-12-03 10:47:37 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-12-03 10:47:37 -0500 |
commit | 1aeebc2621260674d6da34fc87dff51ceae6cc35 (patch) | |
tree | fd07452eddb28b0c956d6fe3c43c6c4bc2593184 /include/core.h | |
parent | 0d73bdcd1938a2bf2b35e92c0ab99495451a8b73 (diff) | |
download | stasis-1aeebc2621260674d6da34fc87dff51ceae6cc35.tar.gz |
Add ability to use artifactory without uploading any artifacts at the end.
* New option: --no-artifactory-upload
* Implies --no-artifactory-build-info
* Updated README.md
Diffstat (limited to 'include/core.h')
-rw-r--r-- | include/core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/core.h b/include/core.h index b8b047f..362ac8d 100644 --- a/include/core.h +++ b/include/core.h @@ -40,6 +40,7 @@ struct STASIS_GLOBAL { bool enable_docker; //!< Enable docker image builds bool enable_artifactory; //!< Enable artifactory uploads bool enable_artifactory_build_info; //!< Enable build info (best disabled for pure test runs) + bool enable_artifactory_upload; //!< Enable artifactory file upload (dry-run when false) bool enable_testing; //!< Enable package testing bool enable_overwrite; //!< Enable release file clobbering bool enable_rewrite_spec_stage_2; //!< Enable automatic @STR@ replacement in output files |