prometheus-rabbitmq-exporter: fix build on Darwin

This commit is contained in:
Aaron Jheng 2023-11-19 22:49:33 +08:00
parent 0d78a5a4a9
commit 5ca5dea7cb
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -13,6 +13,13 @@ buildGoModule rec {
vendorHash = "sha256-ER0vK0xYUbQT3bqUosQMFT7HBycb3U8oI4Eak72myzs=";
ldflags = [ "-s" "-w" ];
checkFlags = [
# Disable flaky tests on Darwin
"-skip=TestWholeApp|TestExporter"
];
meta = with lib; {
description = "Prometheus exporter for RabbitMQ";
homepage = "https://github.com/kbudde/rabbitmq_exporter";