Skip to content

Commit 56bdd33

Browse files
committed
fix: scope kilobase to PG17 only and adjust CI check
1 parent e3d2101 commit 56bdd33

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci-kilobase-runner.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
trusted-public-keys = nix-postgres-artifacts:dGZlQOvKcNEjvT7QEAJbcV6b6uk7VF/hWMjhYleiaLI= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
4343
max-jobs = 4
4444
45-
- name: Nix flake check
46-
run: nix flake check --no-build --accept-flake-config
45+
- name: Evaluate PG17 derivation
46+
run: nix build --dry-run .#packages.x86_64-linux."psql_17/bin" --accept-flake-config
4747

4848
build-and-release:
4949
if: github.event_name == 'workflow_dispatch'

nix/packages/postgres.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
../ext/supautils.nix
4646
../ext/plv8
4747
../ext/pg_failover_slots.nix
48-
../ext/kilobase.nix
4948
];
5049

5150
#Where we import and build the orioledb extension, we add on our custom extensions
@@ -56,7 +55,7 @@
5655
) ourExtensions;
5756

5857
orioledbExtensions = orioleFilteredExtensions ++ [ ../ext/orioledb.nix ];
59-
dbExtensions17 = orioleFilteredExtensions;
58+
dbExtensions17 = orioleFilteredExtensions ++ [ ../ext/kilobase.nix ];
6059

6160
# CLI extensions - minimal set for Supabase CLI with migration support
6261
cliExtensions = [

0 commit comments

Comments
 (0)