Skip to content

Commit 5ce904e

Browse files
authored
Merge pull request #436 from nix-community/buildbot43
buildbot 4.3
2 parents d3e738f + 5870256 commit 5ce904e

File tree

4 files changed

+8
-22
lines changed

4 files changed

+8
-22
lines changed

buildbot_nix/buildbot_nix/repo_config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def extract_during_step(cls, buildstep: BuildStepShellMixin) -> Self:
2828
cmd = await buildstep.makeRemoteShellCommand(
2929
collectStdout=True,
3030
collectStderr=True,
31-
stdioLogName=None,
31+
stdioLogName=None, # type: ignore[arg-type]
3232
# TODO: replace this with something like buildbot.steps.transfer.StringUpload
3333
# in the future... this one doesn't not exist yet.
3434
command=[

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nixosModules/master.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -678,10 +678,10 @@ in
678678

679679
assertions = [
680680
{
681-
assertion = lib.versionAtLeast packages.buildbot.version "4.0.0";
681+
assertion = lib.versionAtLeast packages.buildbot.version "4.3.0";
682682
message = ''
683-
`buildbot-nix` requires `buildbot` 4.0.0 or greater to function.
684-
Set services.buildbot-nix.packages.buildbot to a nixpkgs with buildbot >= 4.0.0,
683+
`buildbot-nix` requires `buildbot` 4.3.0 or greater to function.
684+
Set services.buildbot-nix.packages.buildbot to a nixpkgs with buildbot >= 4.3.0,
685685
i.e. nixpkgs-unstable.
686686
'';
687687
}

packages/buildbot.nix

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1 @@
1-
{ buildbot, fetchpatch }:
2-
buildbot.overrideAttrs (o: {
3-
patches = o.patches ++ [
4-
(fetchpatch {
5-
name = "add-Build.skipBuildIf.patch";
6-
url = "https://github.com/buildbot/buildbot/commit/f08eeef96e15c686a4f6ad52368ad08246314751.patch";
7-
hash = "sha256-ACPYXMbjIfw02gsKwmDKIIZkGSxxLWCaW7ceEcgbtIU=";
8-
})
9-
(fetchpatch {
10-
name = "fix-deprecation-warnings.patch";
11-
url = "https://github.com/buildbot/buildbot/commit/a894300c5085be925f5021bae2058492625a786b.patch";
12-
hash = "sha256-agxubz/5PSw4WL3/d63GVnTKy67mLmL9pbVeImvbrYA=";
13-
})
14-
];
15-
})
1+
{ buildbot, fetchpatch }: buildbot

0 commit comments

Comments
 (0)