Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
8 changes: 4 additions & 4 deletions nix/ext/orioledb.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions nix/postgresql/orioledb-17.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ./generic.nix {
version = "17_4";
hash = "sha256-qMJpTcw/ExipQ1XIPvYTQK+qgcDC7zecdLJDIuQug+0=";
version = "17_5";
hash = "sha256-OgXLpFanNp+ngPFKyCEDUFvIEWQ9nK/1csUO9lVTXaQ=";
}