aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-03-05 12:38:32 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-03-05 12:38:49 -0500
commit039c1c3e231b975d57fdc2e24105dbbbe54a513c (patch)
treeb1f7abb226cf34dcee3c3962289b08e121610b0e /src/lib
parent592d204b0029fd9157f604e5814869075077d486 (diff)
downloadstasis-039c1c3e231b975d57fdc2e24105dbbbe54a513c.tar.gz
Add wheel_builder CLI arguments
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/core/include/core.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/core/include/core.h b/src/lib/core/include/core.h
index 5a3fa85..c895267 100644
--- a/src/lib/core/include/core.h
+++ b/src/lib/core/include/core.h
@@ -51,7 +51,9 @@ struct STASIS_GLOBAL {
char *tmpdir; //!< Path to temporary storage directory
char *conda_install_prefix; //!< Path to install conda
char *sysconfdir; //!< Path where STASIS reads its configuration files (mission directory, etc)
- int task_timeout; ///< Time in seconds before task is terminated
+ int task_timeout; ///!< Time in seconds before task is terminated
+ char *wheel_builder; ///!< Backend to build wheels (build, cibuildwheel, manylinux)
+ char *wheel_builder_manylinux_image; ///!< Image to use for a Manylinux build
struct {
char *tox_posargs;
char *conda_reactivate;