Skip to content

Commit

Permalink
chore: build and release oriole beta7 (#1345)
Browse files Browse the repository at this point in the history
* chore: build and release oriole beta7

* chore: clear nix cache on builder prior to install
  • Loading branch information
samrose authored Nov 29, 2024
1 parent 1d8545c commit 90cf676
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
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=";
}

0 comments on commit 90cf676

Please sign in to comment.