From 05b674190f26e2a58cc7b7288586c031552d50f3 Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Wed, 29 Jan 2025 00:34:30 +0100 Subject: Add git-server to docker-compose To make a githook that can run on alpine images (using musl) they need to be cross-compiled. Then it became apparent that the githook binary was pulling in all the same dependencies as the server was. This is not good, but apparently also not something Rust/Cargo has figured out. RFC:s has been shutdown. workspace might be an option but then I probably need to also add a "code shared by both githook and server" library that both can link. Problem for another day. --- server/src/githook.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'server/src/githook.rs') diff --git a/server/src/githook.rs b/server/src/githook.rs index 24b4359..2e1de13 100644 --- a/server/src/githook.rs +++ b/server/src/githook.rs @@ -52,7 +52,13 @@ async fn main() -> Result<(), Box> { receive: Vec::new(), }; - let repo = git::Repository::new(PathBuf::from("."), true, None::, None::); + let repo = git::Repository::new( + PathBuf::from("."), + true, + None::, + None::, + None::, + ); while let Some(line) = lines.next_line().await? { let data: Vec<&str> = line.split(' ').collect(); -- cgit v1.2.3-70-g09d2