From 30afa0e2ab25cf989ad6c01a70491a727a9aee72 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 5 Feb 2026 18:51:02 +0900 Subject: [PATCH] internal/rosa/git: compile with http support This should be able to fetch repositories deterministically. Signed-off-by: Ophestra --- internal/rosa/git.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/rosa/git.go b/internal/rosa/git.go index 2364422..07333c7 100644 --- a/internal/rosa/git.go +++ b/internal/rosa/git.go @@ -53,6 +53,8 @@ disable_test t4301-merge-tree-write-tree disable_test t8005-blame-i18n disable_test t9350-fast-export disable_test t9300-fast-import +disable_test t0211-trace2-perf +disable_test t1517-outside-repo make \ -C t \ @@ -67,6 +69,9 @@ make \ t.Load(Gettext), t.Load(Zlib), + t.Load(Curl), + t.Load(OpenSSL), + t.Load(Libexpat), ) } func init() { artifactsF[Git] = Toolchain.newGit }