Compare commits
1 commit
push-pxqqu
...
main
Author | SHA1 | Date | |
---|---|---|---|
Skyler Grey | 70dfe25211 |
|
@ -339,11 +339,6 @@ class UpdateBuildOutput(steps.BuildStep):
|
||||||
if not pr and props.getProperty("branch") != self.project.default_branch:
|
if not pr and props.getProperty("branch") != self.project.default_branch:
|
||||||
return util.SKIPPED
|
return util.SKIPPED
|
||||||
|
|
||||||
out_path = props.getProperty("out_path")
|
|
||||||
|
|
||||||
if not out_path: # if, e.g., the build fails and doesn't produce an output
|
|
||||||
return util.SKIPPED
|
|
||||||
|
|
||||||
owner = Path(props.getProperty("owner"))
|
owner = Path(props.getProperty("owner"))
|
||||||
repo = Path(props.getProperty("repository_name"))
|
repo = Path(props.getProperty("repository_name"))
|
||||||
|
|
||||||
|
@ -360,11 +355,11 @@ class UpdateBuildOutput(steps.BuildStep):
|
||||||
|
|
||||||
file.parent.mkdir(parents=True, exist_ok=True)
|
file.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
|
out_path = props.getProperty("out_path")
|
||||||
file.write_text(out_path)
|
file.write_text(out_path)
|
||||||
|
|
||||||
return util.SUCCESS
|
return util.SUCCESS
|
||||||
|
|
||||||
|
|
||||||
# GitHub somtimes fires the PR webhook before it has computed the merge commit
|
# GitHub somtimes fires the PR webhook before it has computed the merge commit
|
||||||
# This is a workaround to fetch the merge commit and checkout the PR branch in CI
|
# This is a workaround to fetch the merge commit and checkout the PR branch in CI
|
||||||
class GitLocalPrMerge(steps.Git):
|
class GitLocalPrMerge(steps.Git):
|
||||||
|
|
Loading…
Reference in a new issue