mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 03:01:05 +02:00
feat: improved pr process, still a bit hacky
This commit is contained in:
parent
eeb0d51709
commit
71083801df
1 changed files with 35 additions and 2 deletions
|
@ -16,7 +16,13 @@ from buildbot.process.results import ALL_RESULTS, statusToString
|
||||||
from buildbot.steps.trigger import Trigger
|
from buildbot.steps.trigger import Trigger
|
||||||
from twisted.internet import defer
|
from twisted.internet import defer
|
||||||
from buildbot.steps.source.github import GitHub
|
from buildbot.steps.source.github import GitHub
|
||||||
|
from buildbot.process.results import FAILURE
|
||||||
|
from buildbot.steps.master import SetProperty
|
||||||
|
|
||||||
|
def failure(step):
|
||||||
|
if step.getProperty("GitFailed"):
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
class BuildTrigger(Trigger):
|
class BuildTrigger(Trigger):
|
||||||
"""
|
"""
|
||||||
|
@ -224,10 +230,38 @@ def nix_update_flake_config(
|
||||||
alwaysUseLatest=True,
|
alwaysUseLatest=True,
|
||||||
method="clobber",
|
method="clobber",
|
||||||
submodules=True,
|
submodules=True,
|
||||||
haltOnFailure=True,
|
|
||||||
branch="update_flake_lock",
|
branch="update_flake_lock",
|
||||||
|
haltOnFailure=False
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
factory.addStep(SetProperty(property="GitFailed", value="failed", doStepIf=(lambda step: step.build.results == FAILURE)))
|
||||||
|
|
||||||
|
factory.addStep(
|
||||||
|
steps.Git(
|
||||||
|
repourl=url_with_secret,
|
||||||
|
alwaysUseLatest=True,
|
||||||
|
method="clobber",
|
||||||
|
submodules=True,
|
||||||
|
haltOnFailure=True,
|
||||||
|
branch="main",
|
||||||
|
doStepIf=failure
|
||||||
|
)
|
||||||
|
)
|
||||||
|
factory.addStep(steps.ShellCommand(
|
||||||
|
name="Creating branch",
|
||||||
|
command=[
|
||||||
|
"git",
|
||||||
|
"checkout",
|
||||||
|
"-b",
|
||||||
|
"update_flake_lock"
|
||||||
|
],
|
||||||
|
haltOnFailure=True,
|
||||||
|
doStepIf=failure
|
||||||
|
)
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
factory.addStep(
|
factory.addStep(
|
||||||
steps.ShellCommand(
|
steps.ShellCommand(
|
||||||
name="Update flake",
|
name="Update flake",
|
||||||
|
@ -305,7 +339,6 @@ def nix_eval_config(
|
||||||
url_with_secret = util.Interpolate(
|
url_with_secret = util.Interpolate(
|
||||||
f"https://git:%(secret:{github_token_secret})s@github.com/%(prop:project)s"
|
f"https://git:%(secret:{github_token_secret})s@github.com/%(prop:project)s"
|
||||||
)
|
)
|
||||||
factory.addStep(steps.ShellCommand(command=["echo", "test"]))
|
|
||||||
factory.addStep(
|
factory.addStep(
|
||||||
GitHub(
|
GitHub(
|
||||||
logEnviron = False,
|
logEnviron = False,
|
||||||
|
|
Loading…
Add table
Reference in a new issue