fix: pg init
runner nix smoke / nix label and flake smoke (push) Failing after 8s

This commit is contained in:
2026-09-08 20:03:57 +00:00
parent 58d590b2be
commit 728814c04d
11 changed files with 23 additions and 23 deletions
+8 -8
View File
@@ -21,11 +21,11 @@ let
runtimeInputs = [ hectic.migrator hectic.parse-uri postgresql neovim openssh coreutils gawk ];
text = ''
. ${hectic.helpers.posix-shell.log}/bin/log.sh
. ${hectic.helpers.posix-shell.change_namespace}/bin/change_namespace.sh
. ${hectic.helpers.posix-shell.quote}/bin/quote.sh
. ${hectic.helpers.posix-shell.pager_or_cat}/bin/pager_or_cat.sh
. ${hectic.helpers.posix-shell.with_closed_fds}/bin/with_closed_fds.sh
. ${hectic.helpers.posix-shell.log}
. ${hectic.helpers.posix-shell.change_namespace}
. ${hectic.helpers.posix-shell.quote}
. ${hectic.helpers.posix-shell.pager_or_cat}
. ${hectic.helpers.posix-shell.with_closed_fds}
${applyBundle}
${builtins.readFile ./db-dev.sh}
'';
@@ -49,8 +49,8 @@ let
runtimeInputs = [ postgresql coreutils ];
text = ''
. ${hectic.helpers.posix-shell.log}/bin/log.sh
. ${hectic.helpers.posix-shell.change_namespace}/bin/change_namespace.sh
. ${hectic.helpers.posix-shell.log}
. ${hectic.helpers.posix-shell.change_namespace}
${applyBundle}
${builtins.readFile ./db-ops.sh}
'';
@@ -71,7 +71,7 @@ let
runtimeInputs = [ postgresql coreutils ];
text = ''
. ${hectic.helpers.posix-shell.with_closed_fds}/bin/with_closed_fds.sh
. ${hectic.helpers.posix-shell.with_closed_fds}
${builtins.readFile ./postgres-init.sh}
'';
+1 -1
View File
@@ -16,7 +16,7 @@ let
];
text = ''
. ${hectic.helpers.posix-shell.log}/bin/log.sh
. ${hectic.helpers.posix-shell.log}
${builtins.readFile ./deploy.sh}
'';
};
+1 -1
View File
@@ -15,7 +15,7 @@ let
text = ''
# shellcheck disable=SC2034
WORKSPACE=${./.}
. ${hectic.helpers.posix-shell.log}/bin/log.sh
. ${hectic.helpers.posix-shell.log}
${builtins.readFile ./hemar.sh}
'';
};
+2 -2
View File
@@ -13,8 +13,8 @@ hectic.writeShellApplication {
runtimeInputs = [ git gnutar gzip bzip2 xz unzip coreutils file ];
text = ''
. ${hectic.helpers.posix-shell.log}/bin/log.sh
. ${hectic.helpers.posix-shell.pager_or_cat}/bin/pager_or_cat.sh
. ${hectic.helpers.posix-shell.log}
. ${hectic.helpers.posix-shell.pager_or_cat}
${builtins.readFile ./merge-archive.sh}
'';
+1 -1
View File
@@ -15,7 +15,7 @@ let
runtimeInputs = [ sqlite postgresql_17 gawk coreutils ];
text = ''
. ${hectic.helpers.posix-shell.log}/bin/log.sh
. ${hectic.helpers.posix-shell.log}
${applyBundle}
${builtins.readFile ./migrator.sh}
'';