CI: move grabpl package command to pkg/build (#55651)

* add grabpl package

* update .drone.yml

* resolve lint errors
This commit is contained in:
Kevin Minehart
2022-09-23 11:49:07 -05:00
committed by GitHub
parent f3a307778a
commit 2fadeeff4c
14 changed files with 1467 additions and 11 deletions

View File

@@ -665,7 +665,7 @@ def package_step(edition, ver_mode, include_enterprise2=False, variants=None):
# TODO: Use percentage for jobs
if ver_mode == 'release':
cmds = [
'{}./bin/grabpl package --jobs 8 --edition {} '.format(test_args, edition) + \
'{}./bin/build package --jobs 8 --edition {} '.format(test_args, edition) + \
'{} ${{DRONE_TAG}}'.format(
sign_args
),
@@ -673,7 +673,7 @@ def package_step(edition, ver_mode, include_enterprise2=False, variants=None):
else:
build_no = '${DRONE_BUILD_NUMBER}'
cmds = [
'{}./bin/grabpl package --jobs 8 --edition {} '.format(test_args, edition) + \
'{}./bin/build package --jobs 8 --edition {} '.format(test_args, edition) + \
'--build-id {}{}{}'.format(build_no, variants_str, sign_args),
]