Builder is working, kinda
Build images / Build (bitwarden) (push) Failing after 1s
Build images / Build (builder) (push) Failing after 1s
Build images / Build (immich) (push) Failing after 1s
Build images / Build (sword-container-builder) (push) Failing after 1s
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
Build images / Build (vm-test) (push) Failing after 1s

This commit is contained in:
Greg Hellings
2026-01-22 23:52:55 -06:00
parent 9f4f97ad55
commit 9a231f8c25
4 changed files with 99 additions and 93 deletions
+10 -6
View File
@@ -28,24 +28,28 @@
...
}:
let
lib' = import ./lib { inherit (pkgs) lib; };
lib' = import ./lib.nix {
inherit (inputs.nix2container.packages.${system}) nix2container;
inherit (pkgs) lib;
};
in
{
_module.args = {
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
inherit system;
config.allowUnfree = true;
lib = lib';
};
lib = lib';
};
packages =
let
inherit (pkgs) callPackage;
name = n: "registry.thehellings.com/greg/ci-images/${n}";
name = n: "src.thehellings.com/greg/${n}";
in
{
base = lib'.baseImage pkgs;
bitwarden = callPackage ./img/bitwarden.nix { inherit name; };
builder = callPackage ./img/builder.nix { inherit name; };
builder = callPackage ./img/builder.nix { inherit name lib'; };
immich = callPackage ./img/immich.nix { inherit name; };
sword-container-builder = callPackage ./img/sword-container-builder.nix { inherit name; };
vm-test = callPackage ./img/vm-test.nix { inherit name; };