CI: move grabpl build-frontend-packages from grabpl to grafana (#53072)

* move grabpl build-frontend-packages

* add frontend and lerna packages

* grabpl build-frontend-packages -> ./bin/build build-frontend-packages

* move getgrafanaversion

* add noinstalldeps flag

* fix compiler error

* fix lint error

* add missing flags
This commit is contained in:
Kevin Minehart
2022-09-06 20:09:08 +03:00
committed by GitHub
parent e5c32c8cc9
commit 1169f14d47
7 changed files with 142 additions and 21 deletions
+2 -2
View File
@@ -415,12 +415,12 @@ def build_frontend_package_step(edition, ver_mode):
# TODO: Use percentage for num jobs
if ver_mode == 'release':
cmds = [
'./bin/grabpl build-frontend-packages --jobs 8 ' + \
'./bin/build build-frontend-packages --jobs 8 ' + \
'--edition {} ${{DRONE_TAG}}'.format(edition),
]
else:
cmds = [
'./bin/grabpl build-frontend-packages --jobs 8 --edition {} '.format(edition) + \
'./bin/build build-frontend-packages --jobs 8 --edition {} '.format(edition) + \
'--build-id {}'.format(build_no),
]