Skip to content

Commit bf31126

Browse files
PetarKirovzah
authored andcommitted
build(elrond-go): Build with Go 1.17 to fix issue with quic-go
Elrond-Go's CI uses Go 1.17 specifically [0]. When using the `buildGoModule` Nix function we're asking Nix to build with the latest `go` package version, which at the time of writing is 1.19 [1], however `quic-go`, which is a dependency of Elrond-go, does not yet support Go 1.19 [2]. [0]: https://github.com/ElrondNetwork/elrond-go/blob/39d7ddcb08bb34217dab6daef7cd9d287fb8cab3/.github/workflows/build_and_test.yml#L21 [1]: https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=go [2]: https://github.com/lucas-clemente/quic-go/wiki/quic-go-and-Go-versions
1 parent 68b6cd0 commit bf31126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/elrond-go/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{pkgs}:
22
with pkgs;
3-
buildGoModule rec {
3+
buildGo117Module rec {
44
pname = "elrond-go";
55
version = "1.3.44";
66

0 commit comments

Comments
 (0)