diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-08-17 17:33:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-17 17:33:39 -0400 |
commit | a7568dc03c1c6851ff6c690e8e35ade9a3199c4a (patch) | |
tree | a2ae84583730b8b2fe35e7823c3c546c04a546ca /include | |
parent | 04ce859e53ef28bc917d4d3a12161e1cfbfa2859 (diff) | |
download | stasis-a7568dc03c1c6851ff6c690e8e35ade9a3199c4a.tar.gz |
Allow the user to disable uploading build info objects to artifactory (#33)
* Add enable_artifactory_build_info to globals structure
* Add --no-artifactory-build-info command line argument to status main()
* Useful for diag/test runs when a fully traceable delivery isn't desired
Diffstat (limited to 'include')
-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 1ea0f5e..ef90e96 100644 --- a/include/core.h +++ b/include/core.h @@ -67,6 +67,7 @@ struct STASIS_GLOBAL { bool conda_fresh_start; //!< Always install a new copy of Conda 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_testing; //!< Enable package testing bool enable_overwrite; //!< Enable release file clobbering bool enable_rewrite_spec_stage_2; //!< Enable automatic @STR@ replacement in output files |