public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Don't check signatures in build-many-glibcs.py
@ 2024-01-12 18:58 Palmer Dabbelt
  2024-03-06 10:39 ` Simon Chopin
  0 siblings, 1 reply; 4+ messages in thread
From: Palmer Dabbelt @ 2024-01-12 18:58 UTC (permalink / raw)
  To: libc-alpha; +Cc: Palmer Dabbelt

I sign commits and have signature verification on in git.  Maybe that's
a bad idea because it trips up a bunch of scripts, but it's pretty easy
to just force skipping signature verification here.

Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
---
 scripts/build-many-glibcs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index ec2ded6e56..f9cf14c94d 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -931,7 +931,7 @@ class Context(object):
             if self.replace_sources:
                 subprocess.run(['git', 'clean', '-dxfq'],
                                cwd=self.component_srcdir(component), check=True)
-            subprocess.run(['git', 'pull', '-q'],
+            subprocess.run(['git', 'pull', '-q', '--no-verify-signatures'],
                            cwd=self.component_srcdir(component), check=True)
         else:
             if self.shallow:
-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-03-13  0:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-12 18:58 [PATCH] Don't check signatures in build-many-glibcs.py Palmer Dabbelt
2024-03-06 10:39 ` Simon Chopin
2024-03-07 20:44   ` Carlos O'Donell
2024-03-13  0:11     ` Palmer Dabbelt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).