From: Ernesto Puerta Date: Wed, 1 Dec 2021 18:51:44 +0000 (+0100) Subject: mgr/dashboard: disable Promql test in ARM X-Git-Tag: v17.1.0~241^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d10b0b7e728ccd28e1002271ce71e6f94a074256;p=ceph.git 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 --- diff --git a/monitoring/grafana/dashboards/CMakeLists.txt b/monitoring/grafana/dashboards/CMakeLists.txt index 5711957923c8..ba049c180d4b 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) @@ -36,4 +37,5 @@ if(WITH_GRAFANA) APPEND PROPERTY ENVIRONMENT GRAFONNET_PATH=${SOURCE_DIR}/grafonnet) + endif(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM") endif()