Skip to content

Commit 230c7c7

Browse files
committed
fix: clickhouse needs git in build inputs
1 parent 33b8948 commit 230c7c7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ansible/tasks/test-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
failed_when: retval.rc != 0
6464
when: debpkg_mode or stage2_nix
6565

66-
- name: Check psql_version and modify migrations if orioe-16
66+
- name: Check psql_version and modify migrations if oriole-xx
6767
block:
68-
- name: Check if psql_version is psql_orioledb-16
68+
- name: Check if psql_version is psql_orioledb-xx
6969
set_fact:
7070
is_psql_oriole: "{{ psql_version in ['psql_orioledb-16', 'psql_orioledb-17'] }}"
7171

nix/ext/wrappers/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
, darwin
1010
, jq
1111
, rust-bin
12+
, git
1213
}:
1314
let
1415
rustVersion = "1.80.0";
@@ -29,7 +30,7 @@ buildPgrxExtension_0_12_6 rec {
2930
};
3031

3132
nativeBuildInputs = [ pkg-config cargo ];
32-
buildInputs = [ openssl postgresql ] ++ lib.optionals (stdenv.isDarwin) [
33+
buildInputs = [ openssl postgresql git ] ++ lib.optionals (stdenv.isDarwin) [
3334
darwin.apple_sdk.frameworks.CoreFoundation
3435
darwin.apple_sdk.frameworks.Security
3536
darwin.apple_sdk.frameworks.SystemConfiguration

0 commit comments

Comments
 (0)