nixosTests.postgresql: run tests with JIT as well

This was intended for quite some time already, but ever since enableJIT
was changed to be the source of truth of JIT-iness for the PostgreSQL
module, this hasn't worked for the tests anymore.
This commit is contained in:
Wolfgang Walther 2024-11-12 21:02:10 +01:00
parent f1e22103a9
commit 9486472352
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1
9 changed files with 14 additions and 4 deletions

View file

@ -24,9 +24,9 @@ let
'';
makeTestFor =
postgresqlPackage:
package:
makeTest {
name = "pgvecto-rs-${postgresqlPackage.name}";
name = "pgvecto-rs-${package.name}";
meta = with lib.maintainers; {
maintainers = [ diogotcorreia ];
};
@ -35,8 +35,9 @@ let
{ ... }:
{
services.postgresql = {
inherit package;
enable = true;
package = postgresqlPackage;
enableJIT = lib.hasInfix "-jit-" package.name;
extraPlugins =
ps: with ps; [
pgvecto-rs