Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: tools/bots/cross-vm.py

Issue 1128863007: Don't assume integer revisions on cross builder (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/cross-vm.py
diff --git a/tools/bots/cross-vm.py b/tools/bots/cross-vm.py
index 006389b625c6a23c06689b0d15286b21d48c9c4a..1b342abb37f634281aae789043c637a7d690856e 100644
--- a/tools/bots/cross-vm.py
+++ b/tools/bots/cross-vm.py
@@ -33,7 +33,7 @@ def record_names(name, arch, mode):
def cross_compiling_builder(arch, mode):
build_py = os.path.join('tools', 'build.py')
- revision = int(os.environ['BUILDBOT_GOT_REVISION'])
+ revision = os.environ['BUILDBOT_GOT_REVISION']
tarball = tarball_name(arch, mode, revision)
temporary_files = [tarball]
bot.Clobber()
@@ -72,7 +72,7 @@ def target_builder(arch, mode):
'--write-test-outcome-log', '--mode=' + mode, '--arch=' + arch,
'--exclude-suite=pkg']
- revision = int(os.environ['BUILDBOT_GOT_REVISION'])
+ revision = os.environ['BUILDBOT_GOT_REVISION']
tarball = tarball_name(arch, mode, revision)
temporary_files = [tarball]
bot.Clobber()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698