add riscv64 building in the hydra jobs
This commit is contained in:
parent
068c9b3785
commit
01caa4cf9b
3 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.direnv
|
||||
/result
|
||||
/result-man
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
config.allowUnsupportedSystem = true;
|
||||
};
|
||||
inherit (pkgs) lib;
|
||||
nur = import ./default.nix {inherit pkgs;};
|
||||
|
@ -35,7 +36,7 @@
|
|||
inherit (nur) overlays modules lib;
|
||||
|
||||
hydraJobs =
|
||||
if (system == "x86_64-linux") || (system == "aarch64-linux")
|
||||
if (system == "x86_64-linux") || (system == "aarch64-linux") || (system == "riscv64-linux")
|
||||
then {
|
||||
inherit packages devShells formatter;
|
||||
}
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/nix/store/fn3wjqz6a7kkjcr9chfbmpld1xnajb5n-nix-2.11.0-man
|
Reference in a new issue