From 90cf6767fba902777be14ecb46ee67480ffe86d2 Mon Sep 17 00:00:00 2001 From: samrose Date: Fri, 29 Nov 2024 09:41:09 -0500 Subject: [PATCH] chore: build and release oriole beta7 (#1345) * chore: build and release oriole beta7 * chore: clear nix cache on builder prior to install --- .github/workflows/test.yml | 9 ++++++++- ansible/vars.yml | 2 +- nix/ext/orioledb.nix | 8 ++++---- nix/postgresql/orioledb-17.nix | 4 ++-- 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f7a187eb5..f343508a9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,11 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v4 - + + - name: Clear Nix cache + run: | + sudo rm -rf /home/runner/.cache/nix + - uses: DeterminateSystems/nix-installer-action@main with: extra-conf: | @@ -41,6 +45,9 @@ jobs: POSTGRES_PASSWORD: password steps: - uses: actions/checkout@v4 + - name: Clear Nix cache + run: | + sudo rm -rf /home/runner/.cache/nix - uses: DeterminateSystems/nix-installer-action@main with: extra-conf: | diff --git a/ansible/vars.yml b/ansible/vars.yml index c0af41450..74ad11cef 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -9,7 +9,7 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "orioledb-17.0.1.002" + postgresorioledb-17: "orioledb-17.0.1.003" postgres15: "15.8.1.013" postgres16: "16.3.1.019" diff --git a/nix/ext/orioledb.nix b/nix/ext/orioledb.nix index 9775226e1..d2291c549 100644 --- a/nix/ext/orioledb.nix +++ b/nix/ext/orioledb.nix @@ -6,12 +6,12 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "orioledb"; repo = "orioledb"; - rev = "beta6"; - sha256 = "sha256-7nmgQDVcNuaGOM6V9xrer2jqfxhJhXZBXRZoiPEoisE="; + rev = "beta7"; + sha256 = "sha256-Rse/gYVkn4QvXipaJ8fyC6FIQ5afkLCaeylgp5MX1z8="; }; - version = "beta6"; + version = "beta7"; buildInputs = [ curl libkrb5 postgresql python3 openssl ]; - buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=4"; + buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=5"; installPhase = '' runHook preInstall mkdir -p $out/{lib,share/postgresql/extension} diff --git a/nix/postgresql/orioledb-17.nix b/nix/postgresql/orioledb-17.nix index bbe5024a5..b79052e20 100644 --- a/nix/postgresql/orioledb-17.nix +++ b/nix/postgresql/orioledb-17.nix @@ -1,4 +1,4 @@ import ./generic.nix { - version = "17_4"; - hash = "sha256-qMJpTcw/ExipQ1XIPvYTQK+qgcDC7zecdLJDIuQug+0="; + version = "17_5"; + hash = "sha256-OgXLpFanNp+ngPFKyCEDUFvIEWQ9nK/1csUO9lVTXaQ="; }