mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-26 14:14:58 +08:00
also build ci for 21.11
This commit is contained in:
parent
7e5c8249e2
commit
c8e0dd83f8
2 changed files with 33 additions and 7 deletions
15
flake.nix
15
flake.nix
|
|
@ -1,11 +1,13 @@
|
|||
{
|
||||
description = "Integrates sops into nixos";
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
inputs.nixpkgs-21_11.url = "github:NixOS/nixpkgs/release-21.11";
|
||||
nixConfig.extra-substituters = ["https://cache.garnix.io"];
|
||||
nixConfig.extra-trusted-public-keys = ["cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="];
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
nixpkgs-21_11
|
||||
}: let
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
|
|
@ -17,6 +19,7 @@
|
|||
"armv7l-linux"
|
||||
];
|
||||
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
||||
suffix-21_11 = attrs: nixpkgs.lib.mapAttrs' (name: value: nixpkgs.lib.nameValuePair (name + "-21_11") value) attrs;
|
||||
in {
|
||||
overlay = final: prev: let
|
||||
localPkgs = import ./default.nix {pkgs = final;};
|
||||
|
|
@ -31,9 +34,15 @@
|
|||
import ./default.nix {
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
});
|
||||
checks =
|
||||
nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"]
|
||||
(system: self.packages.${system}.sops-install-secrets.tests);
|
||||
checks = nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"]
|
||||
(system: let
|
||||
tests = self.packages.${system}.sops-install-secrets.tests;
|
||||
packages-21_11 = import ./default.nix {
|
||||
pkgs = import nixpkgs-21_11 {inherit system;};
|
||||
};
|
||||
tests-21_11 = packages-21_11.sops-install-secrets.tests;
|
||||
in tests // (suffix-21_11 tests-21_11) // (suffix-21_11 packages-21_11));
|
||||
|
||||
defaultPackage = forAllSystems (system: self.packages.${system}.sops-init-gpg-key);
|
||||
devShell = forAllSystems (
|
||||
system:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue