2023-11-26 22:19:34 +01:00
|
|
|
use async_trait::async_trait;
|
|
|
|
use dagger_sdk::Container;
|
|
|
|
|
|
|
|
use crate::dagger_middleware::DaggerMiddleware;
|
|
|
|
|
2023-11-27 13:52:11 +01:00
|
|
|
use super::RustService;
|
|
|
|
|
2023-11-26 22:19:34 +01:00
|
|
|
pub struct Sqlx {}
|
|
|
|
#[async_trait]
|
|
|
|
impl DaggerMiddleware for Sqlx {
|
|
|
|
async fn handle(&self, container: Container) -> eyre::Result<Container> {
|
|
|
|
Ok(container.with_env_variable("SQLX_OFFLINE", "true"))
|
|
|
|
}
|
|
|
|
}
|
2023-11-27 13:52:11 +01:00
|
|
|
|
|
|
|
pub trait SqlxExt {
|
|
|
|
fn with_sqlx(&mut self) -> &mut Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SqlxExt for RustService {
|
|
|
|
fn with_sqlx(&mut self) -> &mut Self {
|
|
|
|
self.with_stage(super::RustServiceStage::BeforeBuild(Box::new(Sqlx {})));
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|