Skip to content

Commit 9e10aba

Browse files
committed
add in output
1 parent a856901 commit 9e10aba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ci/travis_fast_finish.py

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ def check_latest_pr_build(repo, pr, build_num):
4949
pr_builds = filter(lambda b: b["pull_request_number"] == pr, builds)
5050
pr_build_nums = sorted(map(lambda b: int(b["number"]), pr_builds))
5151

52+
print("build_num: {}".format(build_num))
53+
print("pr_build_nums: {}".format(','.join([str(n) for n in pr_build_nums])))
54+
5255
# Check if our build number is the latest (largest)
5356
# out of all of the builds for this PR.
5457
if build_num < max(pr_build_nums):

0 commit comments

Comments
 (0)