diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-08 11:45:42 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-08 11:45:42 -0500 |
commit | 5f7d11f1864823d5bee142b0670342da084fdbfb (patch) | |
tree | c883794bd97f6d9848a53fc19ce1e61752e5828f /include/omc.h | |
parent | 6de32f39ff3a84715788615980e51a709579ad4f (diff) | |
download | stasis-5f7d11f1864823d5bee142b0670342da084fdbfb.tar.gz |
Makes docker builds, artifactory uploads, and testing optional via CLI arguments.
* Remove [DEBUG] from debug summary
* Add enable_* states to debug summary
Diffstat (limited to 'include/omc.h')
-rw-r--r-- | include/omc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/omc.h b/include/omc.h index 99e2eba..c5edef1 100644 --- a/include/omc.h +++ b/include/omc.h @@ -51,6 +51,9 @@ struct OMC_GLOBAL { bool always_update_base_environment; //!< Update base environment immediately after activation bool continue_on_error; //!< Do not stop on test failures 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_testing; //!< Enable package testing struct StrList *conda_packages; //!< Conda packages to install after initial activation struct StrList *pip_packages; //!< Pip packages to install after initial activation char *tmpdir; //!< Path to temporary storage directory |