Skip to content

Commit 3bf7cf0

Browse files
authored
Merge branch 'develop' into sam/update-pgsql-http
2 parents 1de4a54 + ee952d9 commit 3bf7cf0

File tree

3 files changed

+415
-1
lines changed

3 files changed

+415
-1
lines changed

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "orioledb-17.0.1.007"
12+
postgresorioledb-17: "17.0.1.007-orioledb"
1313
postgres15: "15.8.1.017"
1414
postgres16: "16.3.1.023"
1515

flake.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,12 @@
512512
--subst-var-by 'NIX' '${pkgs.nixVersions.nix_2_20}/bin/nix'
513513
chmod +x $out/bin/sync-exts-versions
514514
'';
515+
516+
local-infra-bootstrap = pkgs.runCommand "local-infra-bootstrap" { } ''
517+
mkdir -p $out/bin
518+
substitute ${./nix/tools/local-infra-bootstrap.sh.in} $out/bin/local-infra-bootstrap
519+
chmod +x $out/bin/local-infra-bootstrap
520+
'';
515521
dbmate-tool =
516522
let
517523
migrationsDir = ./migrations/db;
@@ -671,6 +677,7 @@
671677
migrate-postgres = mkApp "migrate-tool" "migrate-postgres";
672678
sync-exts-versions = mkApp "sync-exts-versions" "sync-exts-versions";
673679
pg-restore = mkApp "pg-restore" "pg-restore";
680+
local-infra-bootstrap = mkApp "local-infra-bootstrap" "local-infra-bootstrap";
674681
dbmate-tool = mkApp "dbmate-tool" "dbmate-tool";
675682
migration-unit-tests = mkApp "migration-unit-tests" "migration-unit-tests";
676683
};

0 commit comments

Comments
 (0)