loki: Add post-build-hook to automatically upload matching packages
This commit is contained in:
parent
e24be19c75
commit
828a7c22bd
1 changed files with 23 additions and 13 deletions
|
@ -1,4 +1,9 @@
|
|||
{ nixos-hardware, nix-ld-rs, ... }:
|
||||
{
|
||||
nixos-hardware,
|
||||
nix-ld-rs,
|
||||
attic,
|
||||
...
|
||||
}:
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
imports = [
|
||||
|
@ -488,19 +493,24 @@
|
|||
];
|
||||
};
|
||||
|
||||
# nix.settings.post-build-hook =
|
||||
# let
|
||||
# inherit (attic.packages.${pkgs.system}) attic-client;
|
||||
# in
|
||||
# pkgs.writeScript "upload-to-cache" ''
|
||||
# set -eu
|
||||
# set -f
|
||||
# export IFS=' '
|
||||
nix.settings.post-build-hook =
|
||||
let
|
||||
inherit (attic.packages.${pkgs.system}) attic-client;
|
||||
cachedPackagePatterns = builtins.concatStringsSep "|" [ "mongodb" ];
|
||||
in
|
||||
pkgs.writeScript "upload-to-cache" ''
|
||||
set -eu
|
||||
set -f
|
||||
export IFS=' '
|
||||
|
||||
# OUT_PATHS=$(echo -n ''${OUT_PATHS} | ${pkgs.gawk}/bin/awk 'BEGIN { RS = " "; ORS = " "; } $0 !~ /horus_vcpkg/ { print $0 }')
|
||||
# echo "Uploading paths to cache " ''${OUT_PATHS}
|
||||
# exec ${attic-client}/bin/attic push main ''${OUT_PATHS}
|
||||
# '';
|
||||
OUT_PATHS=$(echo -n ''${OUT_PATHS} | ${pkgs.gawk}/bin/awk 'BEGIN { RS = " "; ORS = " "; } $0 ~ /(${cachedPackagePatterns})/ { print $0 }')
|
||||
if [[ -z "''${OUT_PATHS}" ]]; then
|
||||
echo "No matching packages to upload"
|
||||
exit 0
|
||||
fi
|
||||
echo "Uploading paths to cache " ''${OUT_PATHS}
|
||||
exec ${attic-client}/bin/attic push main ''${OUT_PATHS}
|
||||
'';
|
||||
|
||||
sops.defaultSopsFile = ./secrets.yaml;
|
||||
sops.secrets = {
|
||||
|
|
Loading…
Reference in a new issue