1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-31 04:14:37 +00:00

build nixos tests on CI.

This commit is contained in:
Jörg Thalheim 2020-07-12 17:43:23 +01:00
parent 5ee7f3d73e
commit 1745bb9f95
No known key found for this signature in database
GPG key ID: 003F2096411B5F92
2 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ pkgs ? import <nixpkgs> {} }: let
vendorSha256 = "sha256-O0z+oEffOOZa/bn2gV9onLVbPBHsNDH2yq1CZPi8w58=";
in {
in rec {
sops-init-gpg-key = pkgs.callPackage ./pkgs/sops-init-gpg-key {};
sops-install-secrets = pkgs.callPackage ./pkgs/sops-install-secrets {
inherit vendorSha256;
@ -9,4 +9,7 @@ in {
ssh-to-pgp = pkgs.callPackage ./pkgs/ssh-to-pgp {
inherit vendorSha256;
};
nixos-tests-ssh-keys = sops-install-secrets.tests.ssh-keys;
nixos-tests-pgp-keys = sops-install-secrets.tests.pgp-keys;
}

View file

@ -21,7 +21,7 @@
inherit pkgs;
};
gpg-keys = makeTest {
pgp-keys = makeTest {
nodes.server = { pkgs, lib, ... }: {
imports = [ ../../modules/sops ];
sops.gnupgHome = "/run/gpghome";