Skip to content

Commit

Permalink
Add riscv64 support for flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbiesek authored and Mic92 committed Nov 18, 2024
1 parent 5017be7 commit f163e8d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
outputs = { self, nixpkgs }:

let
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" "riscv64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;

version = nixpkgs.lib.removeSuffix "\n" (builtins.readFile ./version);
Expand Down Expand Up @@ -81,10 +81,12 @@
[ self.hydraJobs.tarball
self.hydraJobs.build.x86_64-linux
self.hydraJobs.build.i686-linux
# FIXME: add aarch64 emulation to our github action...
# FIXME: add aarch64/riscv64 emulation to our github action...
#self.hydraJobs.build.aarch64-linux
#self.hydraJobs.build.riscv64-linux
self.hydraJobs.build-sanitized.x86_64-linux
#self.hydraJobs.build-sanitized.aarch64-linux
#self.hydraJobs.build-sanitized.riscv64-linux
self.hydraJobs.build-sanitized.i686-linux
self.hydraJobs.build-sanitized-clang.x86_64-linux
];
Expand Down

0 comments on commit f163e8d

Please sign in to comment.