From 9ba075d526fc751d0b4ab75937d68535e069c9ff Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Thu, 5 Sep 2024 22:15:46 +0300 Subject: [PATCH] docs: update the govm setup instructions We're not compatible with the latest govm. --- docs/developers-guide/e2e-test.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developers-guide/e2e-test.md b/docs/developers-guide/e2e-test.md index 560a97911..0695e2272 100644 --- a/docs/developers-guide/e2e-test.md +++ b/docs/developers-guide/e2e-test.md @@ -4,10 +4,10 @@ Install: - `docker` -- `govm` +- `govm` v0.95 In case of errors in building `govm` with `go get`, or creating a virtual machine (`Error when creating the new VM: repository name must be canonical`), these are the workarounds: ``` - GO111MODULE=off go get -d github.com/govm-project/govm && cd $GOPATH/src/github.com/govm-project/govm && go mod tidy && go mod download && go install && cd .. && docker build govm -f govm/Dockerfile -t govm/govm:latest + git clone https://github.com/govm-project/govm -b 0.95 && cd govm && go install && docker build . -t govm/govm:latest ``` ## Usage