Skip to content

Commit cb52039

Browse files
committed
Revert "Add riscv64 support for flake.nix"
This reverts commit f163e8d. We don't support riscv64 in hydra. This needs to be refactored to only enable riscv64 in the flake but not in hydra jobs.
1 parent 43b75fb commit cb52039

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

flake.nix

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
outputs = { self, nixpkgs }:
77

88
let
9-
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" "riscv64-linux" ];
9+
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
1010
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
1111

1212
version = nixpkgs.lib.removeSuffix "\n" (builtins.readFile ./version);
@@ -81,12 +81,10 @@
8181
[ self.hydraJobs.tarball
8282
self.hydraJobs.build.x86_64-linux
8383
self.hydraJobs.build.i686-linux
84-
# FIXME: add aarch64/riscv64 emulation to our github action...
84+
# FIXME: add aarch64 emulation to our github action...
8585
#self.hydraJobs.build.aarch64-linux
86-
#self.hydraJobs.build.riscv64-linux
8786
self.hydraJobs.build-sanitized.x86_64-linux
8887
#self.hydraJobs.build-sanitized.aarch64-linux
89-
#self.hydraJobs.build-sanitized.riscv64-linux
9088
self.hydraJobs.build-sanitized.i686-linux
9189
self.hydraJobs.build-sanitized-clang.x86_64-linux
9290
];

0 commit comments

Comments
 (0)