[SeaBIOS] [PATCH 0/3] Patches for baytrail based chromebooks

Kevin O'Connor kevin at koconnor.net
Tue Nov 3 14:23:41 CET 2015


On Tue, Nov 03, 2015 at 01:09:39PM +0000, John Lewis wrote:
> On 2015-11-03 13:02, Kevin O'Connor wrote:
> >That log shows that git wasn't found during the build.  Is there
> >something in Jenkins that prevents the build from accessing git or is
> >git not in the path?
> >
> 
> It's more or less a default Jenkins install, so Git mustn't be available
> inside the workspace. I'll see what I can do about that. I guess it's one to
> watch out for in future.

What does the build output with the patch below?

-Kevin


--- a/scripts/buildversion.py
+++ b/scripts/buildversion.py
@@ -14,6 +14,8 @@ VERSION_FORMAT = """
 
 # Obtain version info from "git" program
 def git_version():
+    sys.stdout.write("CWD=%s PATH=%s FILES=%s\n" % (
+        os.getcwd(), os.environ['PATH'], os.listdir(os.getcwd())))
     if not os.path.exists('.git'):
         return ""
     params = "git describe --tags --long --dirty".split()



More information about the SeaBIOS mailing list