mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
71b9989daa
* feat: auto-build binaries to object storage on deployment Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix: queue the auto-build from pre-locked deploys and off the lock slot Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix: materialize companion modules before a deploy-time build Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix: keep a build job from stamping lock_error_logs on a healthy script Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * test: de-flake test_flow_lock_all and surface the lock error it hides Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * test: trim drafting history from the flow-lock fixture comments Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix: stop a binary build from restarting dedicated workers Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix: keep the build-job marker off the agent wire and out of user args Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2022
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
|
|
pub mod asset_dispatch;
|
|
pub mod binary_prebuild;
|
|
#[cfg(feature = "private")]
|
|
pub mod cascade_ee;
|
|
pub mod cascade_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use cascade_ee as cascade;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use cascade_oss as cascade;
|
|
#[cfg(feature = "private")]
|
|
pub mod ducklake_maintenance_ee;
|
|
pub mod ducklake_maintenance_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use ducklake_maintenance_ee as ducklake_maintenance;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use ducklake_maintenance_oss as ducklake_maintenance;
|
|
#[cfg(feature = "private")]
|
|
pub mod freshness_watchdog_ee;
|
|
pub mod freshness_watchdog_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use freshness_watchdog_ee as freshness_watchdog;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use freshness_watchdog_oss as freshness_watchdog;
|
|
pub mod jobs;
|
|
#[cfg(feature = "private")]
|
|
pub mod jobs_ee;
|
|
pub mod jobs_oss;
|
|
pub mod schedule;
|
|
pub use jobs::*;
|
|
pub mod flow_status;
|
|
pub mod tags;
|
|
pub mod workspace_fairness;
|
|
#[cfg(feature = "private")]
|
|
pub mod workspace_fairness_ee;
|
|
|
|
#[cfg(feature = "cloud")]
|
|
pub mod cloud_usage;
|
|
#[cfg(feature = "cloud")]
|
|
pub use cloud_usage::init_usage_buffer;
|