From b351709aca7ba6357fc6a0c5cbaa082e00fb5967 Mon Sep 17 00:00:00 2001 From: Ernesto Puerta Date: Wed, 1 Dec 2021 19:51:44 +0100 Subject: [PATCH] mgr/dashboard: disable Promql test in ARM Temporarily disable this test while debugging the issue (since https://github.com/ceph/ceph/pull/43669 originally passed the ARM check). Fixes: https://tracker.ceph.com/issues/53451 Signed-off-by: Ernesto Puerta (cherry picked from commit d10b0b7e728ccd28e1002271ce71e6f94a074256) --- monitoring/grafana/dashboards/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monitoring/grafana/dashboards/CMakeLists.txt b/monitoring/grafana/dashboards/CMakeLists.txt index 091f6ceeb2834..51ef18e4376ab 100644 --- a/monitoring/grafana/dashboards/CMakeLists.txt +++ b/monitoring/grafana/dashboards/CMakeLists.txt @@ -11,6 +11,7 @@ if(NOT CEPH_BUILD_VIRTUALENV) endif() if(WITH_GRAFANA) + if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM") include(AddCephTest) add_tox_test(grafana-check TOX_ENVS grafonnet-check) add_tox_test(grafana-query-test TOX_ENVS promql-query-test) @@ -33,4 +34,5 @@ if(WITH_GRAFANA) APPEND PROPERTY ENVIRONMENT GRAFONNET_PATH=${SOURCE_DIR}/grafonnet) + endif(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM") endif() -- 2.39.5