Explicitly run make protobuf when running make build

There are weird issues where randomly protoc compilations happen
although they should not be triggered. As those don't run through the
makefile but somehow differently, the prerequisites are not built first
(protoc plugins have to be fetched, which happens in the `make
protobuf` step).
This commit is contained in:
Benedikt Kulmann
2020-08-24 09:12:18 +02:00
parent 10a14dc8ee
commit 3402af65b7
+3 -3
View File
@@ -105,7 +105,7 @@ def testing(ctx):
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make build',
'make protobuf build',
],
'volumes': [
{
@@ -205,7 +205,7 @@ def docker(ctx, arch):
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make build',
'make protobuf build',
],
'volumes': [
{
@@ -291,7 +291,7 @@ def UITests(ctx, ocisBranch, ocisCommitId, phoenixBranch, phoenixCommitId):
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make build',
'make protobuf build',
],
'volumes': [
{