-
system image: ubuntu20.04
Error message:
I then turned to simply run protoc for one specific benchmark but it also failed, for example:
and the error message shows:
I have tried:
But it doesn't solve the problem |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
@dhschall can you take a look? one possible problem is that you use Golang 1.20 while vSwarm relies on 1.18 as I can see from go.mod files there. |
Beta Was this translation helpful? Give feedback.
-
The problem is you also need to install the protoc compiler. The two packes you installed are only plugins. You can use the workflow file as a hint.
|
Beta Was this translation helpful? Give feedback.
-
@lrq619 could you please try and document the procedure? |
Beta Was this translation helpful? Give feedback.
-
I guess this is solved? |
Beta Was this translation helpful? Give feedback.
The problem is you also need to install the protoc compiler. The two packes you installed are only plugins.
https://grpc.io/docs/languages/go/quickstart/
You can use the workflow file as a hint.
vSwarm-proto/.github/workflows/build-tests.yml
Line 43 in d001f86