mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 03:01:05 +02:00
Updated builbot config
This commit is contained in:
parent
35a1ae8b32
commit
db9c2e07c5
2 changed files with 51 additions and 7 deletions
|
@ -20,7 +20,7 @@ from buildbot.process.results import FAILURE
|
||||||
from buildbot.steps.master import SetProperty
|
from buildbot.steps.master import SetProperty
|
||||||
|
|
||||||
def failure(step):
|
def failure(step):
|
||||||
return step.getProperty("GitFailed")
|
return (step.getProperty("GitFailed")=="failed")
|
||||||
|
|
||||||
class BuildTrigger(Trigger):
|
class BuildTrigger(Trigger):
|
||||||
"""
|
"""
|
||||||
|
@ -236,12 +236,11 @@ def nix_update_flake_config(
|
||||||
submodules=True,
|
submodules=True,
|
||||||
branch="update_flake_lock",
|
branch="update_flake_lock",
|
||||||
haltOnFailure=False,
|
haltOnFailure=False,
|
||||||
warnOnFailure=True,
|
#flunkOnFailure=False,
|
||||||
flunkOnFailure=False,
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
factory.addStep(SetProperty(property="GitFailed", value="failed", hideStepIf=True, doStepIf=(lambda step: step.build.results == FAILURE)))
|
factory.addStep(SetProperty(property="GitFailed", value="failed", doStepIf=(lambda step: step.build.results == FAILURE)))
|
||||||
|
|
||||||
factory.addStep(
|
factory.addStep(
|
||||||
steps.Git(
|
steps.Git(
|
||||||
|
@ -253,7 +252,6 @@ def nix_update_flake_config(
|
||||||
mode="full",
|
mode="full",
|
||||||
branch="main",
|
branch="main",
|
||||||
doStepIf=failure,
|
doStepIf=failure,
|
||||||
hideStepIf=lambda _, x: not(failure(x))
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
factory.addStep(steps.ShellCommand(
|
factory.addStep(steps.ShellCommand(
|
||||||
|
@ -266,7 +264,6 @@ def nix_update_flake_config(
|
||||||
],
|
],
|
||||||
haltOnFailure=True,
|
haltOnFailure=True,
|
||||||
doStepIf=failure,
|
doStepIf=failure,
|
||||||
hideStepIf=lambda _, x: not(failure(x))
|
|
||||||
)
|
)
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
|
@ -64,6 +64,17 @@ def build_config() -> dict[str, Any]:
|
||||||
builderNames=["nix-eval-linkal"],
|
builderNames=["nix-eval-linkal"],
|
||||||
),
|
),
|
||||||
|
|
||||||
|
schedulers.SingleBranchScheduler(
|
||||||
|
name="main-nixos-proxmox",
|
||||||
|
change_filter=util.ChangeFilter(
|
||||||
|
repository=f"https://github.com/JulienMalka/nixos-proxmox",
|
||||||
|
filter_fn=lambda c: c.branch
|
||||||
|
== c.properties.getProperty("github.repository.default_branch"),
|
||||||
|
),
|
||||||
|
builderNames=["nix-eval-nixos-proxmox"],
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
# build all pull requests
|
# build all pull requests
|
||||||
schedulers.SingleBranchScheduler(
|
schedulers.SingleBranchScheduler(
|
||||||
name="prs-nix-config",
|
name="prs-nix-config",
|
||||||
|
@ -80,7 +91,15 @@ def build_config() -> dict[str, Any]:
|
||||||
),
|
),
|
||||||
builderNames=["nix-eval-linkal"],
|
builderNames=["nix-eval-linkal"],
|
||||||
),
|
),
|
||||||
|
|
||||||
|
schedulers.SingleBranchScheduler(
|
||||||
|
name="prs-nixos-proxmox",
|
||||||
|
change_filter=util.ChangeFilter(
|
||||||
|
repository=f"https://github.com/JulienMalka/nixos-proxmox", category="pull"
|
||||||
|
),
|
||||||
|
builderNames=["nix-eval-nixos-proxmox"],
|
||||||
|
),
|
||||||
|
|
||||||
# this is triggered from `nix-eval`
|
# this is triggered from `nix-eval`
|
||||||
schedulers.Triggerable(
|
schedulers.Triggerable(
|
||||||
name="nix-build",
|
name="nix-build",
|
||||||
|
@ -99,6 +118,12 @@ def build_config() -> dict[str, Any]:
|
||||||
builderNames=["nix-update-flake-nix-config"],
|
builderNames=["nix-update-flake-nix-config"],
|
||||||
buttonName="Update flakes",
|
buttonName="Update flakes",
|
||||||
),
|
),
|
||||||
|
schedulers.ForceScheduler(
|
||||||
|
name="update-flake-nixos-proxmox",
|
||||||
|
builderNames=["nix-update-flake-nixos-proxmox"],
|
||||||
|
buttonName="Update flakes",
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
# updates flakes once a weeek
|
# updates flakes once a weeek
|
||||||
schedulers.Nightly(
|
schedulers.Nightly(
|
||||||
|
@ -114,6 +139,14 @@ def build_config() -> dict[str, Any]:
|
||||||
hour=1,
|
hour=1,
|
||||||
minute=0,
|
minute=0,
|
||||||
),
|
),
|
||||||
|
schedulers.Nightly(
|
||||||
|
name="update-flake-daily-nixos-proxmox",
|
||||||
|
builderNames=["nix-update-flake-nixos-proxmox"],
|
||||||
|
dayOfWeek=5,
|
||||||
|
hour=1,
|
||||||
|
minute=0,
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -155,6 +188,12 @@ def build_config() -> dict[str, Any]:
|
||||||
"linkal",
|
"linkal",
|
||||||
github_token_secret="github-token",
|
github_token_secret="github-token",
|
||||||
),
|
),
|
||||||
|
nix_eval_config(
|
||||||
|
[worker_names[0]],
|
||||||
|
"nixos-proxmox",
|
||||||
|
github_token_secret="github-token",
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
nix_build_config(worker_names),
|
nix_build_config(worker_names),
|
||||||
nix_update_flake_config(
|
nix_update_flake_config(
|
||||||
|
@ -171,6 +210,14 @@ def build_config() -> dict[str, Any]:
|
||||||
github_token_secret="github-token",
|
github_token_secret="github-token",
|
||||||
github_bot_user=BUILDBOT_GITHUB_USER,
|
github_bot_user=BUILDBOT_GITHUB_USER,
|
||||||
),
|
),
|
||||||
|
nix_update_flake_config(
|
||||||
|
worker_names,
|
||||||
|
"nixos-proxmox",
|
||||||
|
f"JulienMalka/nixos-proxmox",
|
||||||
|
github_token_secret="github-token",
|
||||||
|
github_bot_user=BUILDBOT_GITHUB_USER,
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue