Merge pull request #268514 from aaronjheng/prometheus-rabbitmq-exporter

prometheus-rabbitmq-exporter: fix build on Darwin
This commit is contained in:
Nick Cao 2023-11-19 11:03:02 -05:00 committed by GitHub
commit 3a9f07dd8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";