about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorConnor Baker <connorbaker01@gmail.com>2022-02-01 12:45:12 -0500
committerConnor Baker <connorbaker01@gmail.com>2022-02-14 08:20:37 -0500
commit737e30d3feb0e8bc7eb42f680ce67868627314f3 (patch)
tree468c532411b2502322f652562f6426284a0f3097 /nixos
parent090efcc4736b930a49e3c811455edbf4ffd88f4f (diff)
downloadnixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.tar
nixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.tar.gz
nixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.tar.bz2
nixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.tar.lz
nixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.tar.xz
nixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.tar.zst
nixlib-737e30d3feb0e8bc7eb42f680ce67868627314f3.zip
hadoop: add aarch64 support
This commit also changes the names of the tests for Hadoop so they use dashes instead of dots,
and makes the default `hadoop` test what would have been `hadoop-all` after the rename.

This change should mean that we're able to run

`nix build github:nixos/nixpkgs/master#nixosTests.hadoop`

which I was unable to do prior to this change.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 3fd4945ed352..cf695dad4762 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -187,9 +187,9 @@ in
   grocy = handleTest ./grocy.nix {};
   grub = handleTest ./grub.nix {};
   gvisor = handleTest ./gvisor.nix {};
-  hadoop.all = handleTestOn [ "x86_64-linux" ] ./hadoop/hadoop.nix {};
-  hadoop.hdfs = handleTestOn [ "x86_64-linux" ] ./hadoop/hdfs.nix {};
-  hadoop.yarn = handleTestOn [ "x86_64-linux" ] ./hadoop/yarn.nix {};
+  hadoop = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./hadoop/hadoop.nix {};
+  hadoop-hdfs = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./hadoop/hdfs.nix {};
+  hadoop-yarn = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./hadoop/yarn.nix {};
   haka = handleTest ./haka.nix {};
   haproxy = handleTest ./haproxy.nix {};
   hardened = handleTest ./hardened.nix {};