Skip to content

Commit 92affcf

Browse files
committed
feat: update oriole extension to beta9
1 parent 82b96e0 commit 92affcf

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "17.0.1.017-orioledb"
13-
postgres15: "15.8.1.027"
14-
postgres16: "16.3.1.033"
12+
postgresorioledb-17: "17.0.1.018-orioledb-staging"
13+
postgres15: "15.8.1.028"
14+
postgres16: "16.3.1.034"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

nix/ext/orioledb.nix

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,25 @@ stdenv.mkDerivation rec {
66
src = fetchFromGitHub {
77
owner = "orioledb";
88
repo = "orioledb";
9-
rev = "beta8";
10-
sha256 = "sha256-niyTQr1FQYEsKdxl/uVrKSiIR0DCnnT+DDkW47lsc80=";
9+
rev = "beta9";
10+
sha256 = "sha256-z2EHWsY+hhtnYzAxOl2PWjqfyJ+wp9SCau5LKPT2ec0=";
1111
};
12-
version = "beta8";
12+
version = "beta9";
1313
buildInputs = [ curl libkrb5 postgresql python3 openssl ];
1414
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=5";
1515
installPhase = ''
1616
runHook preInstall
17+
1718
mkdir -p $out/{lib,share/postgresql/extension}
1819
19-
cp *${postgresql.dlSuffix} $out/lib
20-
cp *.sql $out/share/postgresql/extension
21-
cp *.control $out/share/postgresql/extension
20+
# Copy the extension library
21+
cp orioledb${postgresql.dlSuffix} $out/lib/
22+
23+
# Copy sql files from the sql directory
24+
cp sql/*.sql $out/share/postgresql/extension/
25+
26+
# Copy control file
27+
cp orioledb.control $out/share/postgresql/extension/
2228
2329
runHook postInstall
2430
'';

0 commit comments

Comments
 (0)