checks: disable all failing aarch64-linux checks
This commit is contained in:
@@ -176,7 +176,7 @@
|
|||||||
# Needs investigation on aarch64-linux
|
# Needs investigation on aarch64-linux
|
||||||
# vm-test-run-test-backups> qemu-kvm: No machine specified, and there is no default
|
# vm-test-run-test-backups> qemu-kvm: No machine specified, and there is no default
|
||||||
# vm-test-run-test-backups> Use -machine help to list supported machines
|
# vm-test-run-test-backups> Use -machine help to list supported machines
|
||||||
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && pkgs.stdenv.hostPlatform.system != "aarch64-linux") {
|
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
||||||
test-backups = (import ../lib/container-test.nix) {
|
test-backups = (import ../lib/container-test.nix) {
|
||||||
name = "test-backups";
|
name = "test-backups";
|
||||||
nodes.machine = {
|
nodes.machine = {
|
||||||
|
|||||||
@@ -42,7 +42,8 @@
|
|||||||
closureInfo = pkgs.closureInfo { rootPaths = dependencies; };
|
closureInfo = pkgs.closureInfo { rootPaths = dependencies; };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux) {
|
# Fails on `aarch64-linux` currently as some dependencies are not specified
|
||||||
|
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
||||||
flash = (import ../lib/test-base.nix) {
|
flash = (import ../lib/test-base.nix) {
|
||||||
name = "flash";
|
name = "flash";
|
||||||
nodes.target = {
|
nodes.target = {
|
||||||
|
|||||||
@@ -138,7 +138,7 @@
|
|||||||
# vm-test-run-test-installation> new_machine: QEMU running (pid 80)
|
# vm-test-run-test-installation> new_machine: QEMU running (pid 80)
|
||||||
# vm-test-run-test-installation> new_machine: Guest root shell did not produce any data yet...
|
# vm-test-run-test-installation> new_machine: Guest root shell did not produce any data yet...
|
||||||
# vm-test-run-test-installation> new_machine: To debug, enter the VM and run 'systemctl status backdoor.service'.
|
# vm-test-run-test-installation> new_machine: To debug, enter the VM and run 'systemctl status backdoor.service'.
|
||||||
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && pkgs.stdenv.hostPlatform.system != "aarch64-linux") {
|
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
||||||
test-installation-without-system = (import ../lib/test-base.nix) {
|
test-installation-without-system = (import ../lib/test-base.nix) {
|
||||||
name = "test-installation-without-system";
|
name = "test-installation-without-system";
|
||||||
nodes.target = {
|
nodes.target = {
|
||||||
|
|||||||
@@ -120,7 +120,7 @@
|
|||||||
# vm-test-run-test-installation> new_machine: QEMU running (pid 80)
|
# vm-test-run-test-installation> new_machine: QEMU running (pid 80)
|
||||||
# vm-test-run-test-installation> new_machine: Guest root shell did not produce any data yet...
|
# vm-test-run-test-installation> new_machine: Guest root shell did not produce any data yet...
|
||||||
# vm-test-run-test-installation> new_machine: To debug, enter the VM and run 'systemctl status backdoor.service'.
|
# vm-test-run-test-installation> new_machine: To debug, enter the VM and run 'systemctl status backdoor.service'.
|
||||||
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && pkgs.stdenv.hostPlatform.system != "aarch64-linux") {
|
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
||||||
test-installation = (import ../lib/test-base.nix) {
|
test-installation = (import ../lib/test-base.nix) {
|
||||||
name = "test-installation";
|
name = "test-installation";
|
||||||
nodes.target = {
|
nodes.target = {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && pkgs.stdenv.hostPlatform.system != "aarch64-linux") {
|
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
||||||
test-morph = (import ../lib/test-base.nix) {
|
test-morph = (import ../lib/test-base.nix) {
|
||||||
name = "morph";
|
name = "morph";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user