Merge pull request #231624 from bachp/zhf-thanos

thanos: pin to Go 1.19
This commit is contained in:
Robert Scott 2023-05-13 18:27:12 +01:00 committed by GitHub
commit 09315163a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -12,7 +12,7 @@ buildGoModule rec {
vendorHash = "sha256-bNQwDttJ7YuQFrpp0alqe37/lue0CX5gB2UDRWWtTXQ=";
doCheck = false;
doCheck = true;
subPackages = "cmd/thanos";

View File

@ -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 { };