Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion buildbot-nix.toml

This file was deleted.

13 changes: 11 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
"x86_64-linux"
];

warn = builtins.warn or nixpkgs.lib.warn;

releaseInfo = nixpkgs.lib.importJSON ./release.json;

docsFor =
Expand Down Expand Up @@ -176,8 +178,8 @@
{
formatter = forSupportedPkgs (pkgs: pkgs.callPackage ./home-manager/formatter.nix { });

# TODO: increase buildbot testing scope
buildbot = forCI (
# TODO: increase nixbot testing scope
nixbot = forCI (
system:
let
docs = docsFor nixpkgs.legacyPackages.${system};
Expand All @@ -200,6 +202,13 @@
}
);

# Alias for nixbot, added 2026-07-30
buildbot = forCI (
system:
warn "Home Manager: `buildbot.${system}` has been renamed to `nixbot.${system}`."
self.nixbot.${system}
);

packages = forAllPkgs (
pkgs:
let
Expand Down
4 changes: 4 additions & 0 deletions nixbot.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
attribute = "nixbot"
# Additional branches to build on push.
# The default branch and merge-queue branches always build.
build_branches = ["release-*"]
Loading