Compare commits

..

No commits in common. "4b8c1a64765b486a7d598982d1142f702ddf8f86" and "e0e3041db78d45c04bfd5ca295e6ff98672b4ba1" have entirely different histories.

2 changed files with 5 additions and 10 deletions

View file

@ -4,7 +4,6 @@ pub struct TciRepo {
pub path: std::path::PathBuf,
pub cfg: git2::Config,
pub refs: Vec<String>,
pub ci_branch: Option<String>,
}
impl TciRepo {
@ -32,9 +31,7 @@ impl TciRepo {
let cfg = git2::Config::open(&path.join("config"))?;
let ci_branch = cfg.get_string("tci.branch").ok();
Ok(TciRepo { name, path, cfg, refs, ci_branch })
Ok(TciRepo { name, path, cfg, refs })
}
pub fn updated(&self, search: &str) -> bool {

View file

@ -24,12 +24,13 @@ impl Tci {
return false; // we are in whitelist mode and this repo is not whitelisted
}
if let Some(repo_branch) = &self.repo.ci_branch {
return self.repo.updated(&repo_branch);
if let Ok(repo_branch) = self.repo.cfg.get_str("tci.branch") {
return self.repo.updated(repo_branch);
}
match self.cfg.branch.as_deref() {
None => self.repo.updated("tci"),
Some("") => true,
Some(b) => self.repo.updated(b),
}
}
@ -64,14 +65,11 @@ impl Tci {
let tmp = tempdir::TempDir::new(
&format!("tci-{}", self.repo.name.replace('/', "_"))
)?;
let clone_branch = self.repo.ci_branch.as_deref()
.unwrap_or_else(|| self.cfg.branch.as_deref().unwrap_or("tci"));
// TODO recursive clone? automatically clone all submodules after?
git2::build::RepoBuilder::new()
.bare(false)
.branch(clone_branch)
.branch("tci")
.clone(
self.repo.path.to_str()
.ok_or(TciErr::FsError("repo path is not a valid string"))?,