nixosTests.simple-vm: rename from nixosTests.simple

renamed because we now have different kinds of tests
This commit is contained in:
zowoq
2026-05-22 20:54:57 +10:00
parent 81371ab13f
commit 244b700403
8 changed files with 9 additions and 9 deletions

View File

@@ -188,7 +188,7 @@ let
kernel: rebuilds: lib.nameValuePair "10.rebuild-${kernel}-stdenv" (lib.elem "stdenv" rebuilds)
) rebuildsByKernel
// {
"10.rebuild-nixos-tests" = lib.elem "nixosTests.simple" (extractPackageNames diffAttrs.rebuilds);
"10.rebuild-nixos-tests" = lib.elem "nixosTests.simple-vm" (extractPackageNames diffAttrs.rebuilds);
};
}
);

View File

@@ -108,6 +108,6 @@ in
tweak (
(removeAttrs nixpkgsJobs blacklist)
// {
nixosTests = lib.filterAttrs (name: _: name == "simple") nixosJobs.tests;
nixosTests = lib.filterAttrs (name: _: name == "simple-vm") nixosJobs.tests;
}
)

View File

@@ -99,7 +99,7 @@ async function checkTargetBranch({ github, context, core, dry }) {
...Object.values(changed.rebuildCountByKernel),
)
const rebuildsAllTests =
changed.attrdiff.changed.includes('nixosTests.simple')
changed.attrdiff.changed.includes('nixosTests.simple-vm')
// https://github.com/NixOS/nixpkgs/pull/481205#issuecomment-3790123921
// These should go to staging-nixos instead of master,