Fix change detection on retried Shippable jobs.
(cherry picked from commit c0aaf0fff7
)
This commit is contained in:
parent
4c1d64cc94
commit
ebcba98b38
1 changed files with 3 additions and 2 deletions
|
@ -57,6 +57,7 @@ class ShippableChanges(object):
|
|||
self.is_tag = os.environ['IS_GIT_TAG'] == 'true'
|
||||
self.commit = os.environ['COMMIT']
|
||||
self.project_id = os.environ['PROJECT_ID']
|
||||
self.commit_range = os.environ['SHIPPABLE_COMMIT_RANGE']
|
||||
except KeyError as ex:
|
||||
raise MissingEnvironmentVariable(name=ex.args[0])
|
||||
|
||||
|
@ -64,8 +65,8 @@ class ShippableChanges(object):
|
|||
raise ChangeDetectionNotSupported('Change detection is not supported for tags.')
|
||||
|
||||
if self.is_pr:
|
||||
self.paths = sorted(git.get_diff_names(['origin/%s' % self.branch, '--']))
|
||||
self.diff = git.get_diff(['origin/%s' % self.branch, '--'])
|
||||
self.paths = sorted(git.get_diff_names([self.commit_range]))
|
||||
self.diff = git.get_diff([self.commit_range])
|
||||
else:
|
||||
merge_runs = self.get_merge_runs(self.project_id, self.branch)
|
||||
last_successful_commit = self.get_last_successful_commit(git, merge_runs)
|
||||
|
|
Loading…
Reference in a new issue