Add more eval examples + filtering examples by language + fix git concurrent usage (#28719)

Release Notes:

- N/A

---------

Co-authored-by: michael <michael@zed.dev>
Co-authored-by: agus <agus@zed.dev>
This commit is contained in:
Thomas Mickley-Doyle 2025-04-14 17:05:46 -05:00 committed by GitHub
parent a8b1ef3531
commit d74f0735c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
76 changed files with 365 additions and 8 deletions

View file

@ -115,6 +115,8 @@ impl Example {
pub async fn setup(&self) -> Result<()> {
let repo_path = repo_path_for_url(&self.base.url);
println!("{}> Fetching", self.name);
run_git(
&repo_path,
&["fetch", "--depth", "1", "origin", &self.base.revision],