Skip to content

Commit 6780156

Browse files
committed
fix(ci): build each postgresql version separately
The `makeCheckHarness` function depends on all postgresql versions.
1 parent 50aa8ab commit 6780156

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,9 +1377,9 @@
13771377
# The list of exported 'checks' that are run with every run of 'nix
13781378
# flake check'. This is run in the CI system, as well.
13791379
checks = {
1380-
psql_15 = makeCheckHarness basePackages.psql_15.bin;
1381-
psql_17 = makeCheckHarness basePackages.psql_17.bin;
1382-
psql_orioledb-17 = makeCheckHarness basePackages.psql_orioledb-17.bin;
1380+
psql_15 = basePackages.psql_15.bin;
1381+
psql_17 = basePackages.psql_17.bin;
1382+
psql_orioledb-17 = basePackages.psql_orioledb-17.bin;
13831383
inherit (basePackages) wal-g-2 wal-g-3 dbmate-tool pg_regress;
13841384
} // pkgs.lib.optionalAttrs (system == "aarch64-linux") {
13851385
inherit (basePackages) postgresql_15_debug postgresql_15_src postgresql_orioledb-17_debug postgresql_orioledb-17_src postgresql_17_debug postgresql_17_src;

0 commit comments

Comments
 (0)