Merge pull request #44 from DarkKirb/add-riscv64-hydra

add riscv64 building in the hydra jobs
This commit is contained in:
Charlotte 🦝 Delenk 2022-11-28 14:41:52 +01:00 committed by GitHub
commit c9b6389a59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
.direnv .direnv
/result /result
/result-man

View file

@ -17,6 +17,7 @@
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
config.allowUnsupportedSystem = true;
}; };
inherit (pkgs) lib; inherit (pkgs) lib;
nur = import ./default.nix {inherit pkgs;}; nur = import ./default.nix {inherit pkgs;};
@ -35,7 +36,7 @@
inherit (nur) overlays modules lib; inherit (nur) overlays modules lib;
hydraJobs = hydraJobs =
if (system == "x86_64-linux") || (system == "aarch64-linux") if (system == "x86_64-linux") || (system == "aarch64-linux") || (system == "riscv64-linux")
then { then {
inherit packages devShells formatter; inherit packages devShells formatter;
} }

View file

@ -1 +0,0 @@
/nix/store/fn3wjqz6a7kkjcr9chfbmpld1xnajb5n-nix-2.11.0-man