diff options
author | Robert Hensing <robert@roberthensing.nl> | 2023-08-11 15:58:43 +0200 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-08-30 19:34:35 -0400 |
commit | 3384f70a3d5ee7bd1d1bf5fa48809c4eac5c8041 (patch) | |
tree | b82bf0224c220b500bedc84b9c2045b85d88eb10 /flake.nix | |
parent | 46478b44ffb477387235b3c597c24178845fb2a3 (diff) |
nixpkgsLibTests: Only test our Nix
Interface has changed upstream.
It *should* be fine to test 23.05's other Nix versions as those
*should* succeed, but that's not the case and it's obfuscating
our terrible CI setup's log.
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -656,7 +656,9 @@ tests.nixpkgsLibTests = forAllSystems (system: import (nixpkgs + "/lib/tests/release.nix") - { pkgs = nixpkgsFor.${system}.native; } + { pkgs = nixpkgsFor.${system}.native; + nixVersions = [ self.packages.${system}.nix ]; + } ); metrics.nixpkgs = import "${nixpkgs-regression}/pkgs/top-level/metrics.nix" { |