Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
a0acb54896
commit
85ad929d80
@ -5,11 +5,24 @@ use crate::dagger_middleware::DaggerMiddleware;
|
|||||||
|
|
||||||
use super::RustService;
|
use super::RustService;
|
||||||
|
|
||||||
pub struct Sqlx {}
|
pub struct Sqlx {
|
||||||
|
client: dagger_sdk::Query,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Sqlx {
|
||||||
|
pub fn new(client: dagger_sdk::Query) -> Self {
|
||||||
|
Self { client }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl DaggerMiddleware for Sqlx {
|
impl DaggerMiddleware for Sqlx {
|
||||||
async fn handle(&self, container: Container) -> eyre::Result<Container> {
|
async fn handle(&self, container: Container) -> eyre::Result<Container> {
|
||||||
Ok(container.with_env_variable("SQLX_OFFLINE", "true"))
|
let src = self.client.host().directory(".sqlx/");
|
||||||
|
|
||||||
|
Ok(container
|
||||||
|
.with_directory(".sqlx", src)
|
||||||
|
.with_env_variable("SQLX_OFFLINE", "true"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -21,7 +34,9 @@ pub trait SqlxExt {
|
|||||||
|
|
||||||
impl SqlxExt for RustService {
|
impl SqlxExt for RustService {
|
||||||
fn with_sqlx(&mut self) -> &mut Self {
|
fn with_sqlx(&mut self) -> &mut Self {
|
||||||
self.with_stage(super::RustServiceStage::BeforeBuild(Box::new(Sqlx {})));
|
self.with_stage(super::RustServiceStage::BeforeBuild(Box::new(Sqlx::new(
|
||||||
|
self.client.clone(),
|
||||||
|
))));
|
||||||
|
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user