aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBen Clayton <bclayton@google.com>2022-12-08 14:24:32 +0000
committerGitHub <noreply@github.com>2022-12-08 09:24:32 -0500
commit8d073625878223f53bd2717da62716f2440877d2 (patch)
tree9d1b3ca97ec40b605197aecad99fc2aca94c1055 /tools
parentb8729a650531b6ffaee726ad93e9d9a7f2c3f5d8 (diff)
downloadamber-8d073625878223f53bd2717da62716f2440877d2.tar.gz
Remove shader debugging from Amber (#1001)
* Remove shader debugging from Amber SwiftShader was the only implementation that supported this, but has disabled this code due to lack of use. If there's no driver that supports shader debugging, then it doesn't need to exist and be maintained in Amber. If one day, we want this again, then this CL can be reverted. Fixes: #999 * Fix Kokoro build failures due to git errors About "detected dubious ownership" Co-authored-by: David Neto <dneto@google.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_build_version.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/update_build_version.py b/tools/update_build_version.py
index 9feafb1..c3fad97 100755
--- a/tools/update_build_version.py
+++ b/tools/update_build_version.py
@@ -35,9 +35,9 @@ def command_output(cmd, directory):
cwd=directory,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
- (stdout, _) = p.communicate()
+ (stdout, stderr) = p.communicate()
if p.returncode != 0:
- raise RuntimeError('Failed to run {} in {}'.format(cmd, directory))
+ raise RuntimeError('Failed to run {} in {}\nstdout: {}\nstderr: {}'.format(cmd, directory, stdout, stderr))
return stdout