Put make gen-go in initialize step (#39854)

This commit is contained in:
Dimitris Sotirakis
2021-09-30 15:39:48 +02:00
committed by GitHub
parent 97367acc0a
commit b7a68a9516
2 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -43,6 +43,9 @@ def initialize_step(edition, platform, ver_mode, is_downstream=False, install_de
]
common_cmds = [
'./bin/grabpl verify-drone',
# Generate Go code, will install Wire
# TODO: Install Wire in Docker image instead
'make gen-go',
]
if ver_mode == 'release':
@@ -158,9 +161,6 @@ def lint_backend_step(edition):
'initialize',
],
'commands': [
# Generate Go code, will install Wire
# TODO: Install Wire in Docker image instead
'make gen-go',
# Don't use Make since it will re-download the linters
'./bin/grabpl lint-backend --edition {}'.format(edition),
],