about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2024-02-14 11:45:02 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2024-03-23 06:13:41 -0300
commit7809138b7fe6f6eeb3003683169f3c5209647709 (patch)
tree03b8fccc2da01d35808a66bc2ccf0070f523a8be /nixos
parent696b91feb861d52670ffa493877174593e7a2e9c (diff)
downloadnixlib-7809138b7fe6f6eeb3003683169f3c5209647709.tar
nixlib-7809138b7fe6f6eeb3003683169f3c5209647709.tar.gz
nixlib-7809138b7fe6f6eeb3003683169f3c5209647709.tar.bz2
nixlib-7809138b7fe6f6eeb3003683169f3c5209647709.tar.lz
nixlib-7809138b7fe6f6eeb3003683169f3c5209647709.tar.xz
nixlib-7809138b7fe6f6eeb3003683169f3c5209647709.tar.zst
nixlib-7809138b7fe6f6eeb3003683169f3c5209647709.zip
nixos/tests/etcd: enable aarch64-linux
* move etcd tests to it's own directory
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix4
-rw-r--r--nixos/tests/etcd/etcd-cluster.nix (renamed from nixos/tests/etcd-cluster.nix)2
-rw-r--r--nixos/tests/etcd/etcd.nix (renamed from nixos/tests/etcd.nix)2
3 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index f713e3bfdc6f..2c08fdba6c98 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -290,8 +290,8 @@ in {
   activation-etc-overlay-mutable = runTest ./activation/etc-overlay-mutable.nix;
   activation-etc-overlay-immutable = runTest ./activation/etc-overlay-immutable.nix;
   activation-perlless = runTest ./activation/perlless.nix;
-  etcd = handleTestOn ["x86_64-linux"] ./etcd.nix {};
-  etcd-cluster = handleTestOn ["x86_64-linux"] ./etcd-cluster.nix {};
+  etcd = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./etcd/etcd.nix {};
+  etcd-cluster = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./etcd/etcd-cluster.nix {};
   etebase-server = handleTest ./etebase-server.nix {};
   etesync-dav = handleTest ./etesync-dav.nix {};
   evcc = handleTest ./evcc.nix {};
diff --git a/nixos/tests/etcd-cluster.nix b/nixos/tests/etcd/etcd-cluster.nix
index c77c0dd73c25..734d56dbc223 100644
--- a/nixos/tests/etcd-cluster.nix
+++ b/nixos/tests/etcd/etcd-cluster.nix
@@ -1,6 +1,6 @@
 # This test runs simple etcd cluster
 
-import ./make-test-python.nix ({ pkgs, ... } : let
+import ../make-test-python.nix ({ pkgs, ... } : let
 
   runWithOpenSSL = file: cmd: pkgs.runCommand file {
     buildInputs = [ pkgs.openssl ];
diff --git a/nixos/tests/etcd.nix b/nixos/tests/etcd/etcd.nix
index 79857778ae1b..a32d0f9a55d1 100644
--- a/nixos/tests/etcd.nix
+++ b/nixos/tests/etcd/etcd.nix
@@ -1,6 +1,6 @@
 # This test runs simple etcd node
 
-import ./make-test-python.nix ({ pkgs, ... } : {
+import ../make-test-python.nix ({ pkgs, ... } : {
   name = "etcd";
 
   meta = with pkgs.lib.maintainers; {