Remove --no-install-deps argument (#45718)

This commit is contained in:
Dimitris Sotirakis
2022-02-22 13:22:45 +02:00
committed by GitHub
parent 7acb203b52
commit ded53e8e0e
2 changed files with 24 additions and 26 deletions
+3 -3
View File
@@ -400,12 +400,12 @@ def build_frontend_step(edition, ver_mode, is_downstream=False):
# TODO: Use percentage for num jobs
if ver_mode == 'release':
cmds = [
'./bin/grabpl build-frontend --jobs 8 --github-token $${GITHUB_TOKEN} --no-install-deps ' + \
'./bin/grabpl build-frontend --jobs 8 --github-token $${GITHUB_TOKEN} ' + \
'--edition {} --no-pull-enterprise ${{DRONE_TAG}}'.format(edition),
]
else:
cmds = [
'./bin/grabpl build-frontend --jobs 8 --no-install-deps --edition {} '.format(edition) + \
'./bin/grabpl build-frontend --jobs 8 --edition {} '.format(edition) + \
'--build-id {} --no-pull-enterprise'.format(build_no),
]
@@ -453,7 +453,7 @@ def build_plugins_step(edition, sign=False):
'environment': env,
'commands': [
# TODO: Use percentage for num jobs
'./bin/grabpl build-plugins --jobs 8 --edition {} --no-install-deps{}'.format(edition, sign_args),
'./bin/grabpl build-plugins --jobs 8 --edition {}{}'.format(edition, sign_args),
],
}