From 5f7d11f1864823d5bee142b0670342da084fdbfb Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 8 Mar 2024 11:45:42 -0500 Subject: Makes docker builds, artifactory uploads, and testing optional via CLI arguments. * Remove [DEBUG] from debug summary * Add enable_* states to debug summary --- include/omc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/omc.h') 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 -- cgit