Unverified Commit 09315163 authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

Merge pull request #231624 from bachp/zhf-thanos

thanos: pin to Go 1.19
parents ae942554 37571374
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ buildGoModule rec {

  vendorHash = "sha256-bNQwDttJ7YuQFrpp0alqe37/lue0CX5gB2UDRWWtTXQ=";

  doCheck = false;
  doCheck = true;

  subPackages = "cmd/thanos";

+5 −1
Original line number Diff line number Diff line
@@ -26088,7 +26088,11 @@ with pkgs;
  tailspin = callPackage ../tools/misc/tailspin { };
  thanos = callPackage ../servers/monitoring/thanos { };
  thanos = callPackage ../servers/monitoring/thanos {
    # Fails to run with go1.20 due to go4.org/unsafe/assume-no-moving-gc not being
    # update to be compatible with Go 1.20
    buildGoModule = buildGo119Module;
  };
  trafficserver = callPackage ../servers/http/trafficserver { };