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 <epuertat@redhat.com>
This commit is contained in:
Ernesto Puerta 2021-12-01 19:51:44 +01:00
parent 44d706c353
commit d10b0b7e72
No known key found for this signature in database
GPG Key ID: B4F6FFCB7A8384ED

View File

@ -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()