CI: grabpl verify-drone -> ./bin/build verify-drone (#55171)

* move grabpl verify-drone
This commit is contained in:
Kevin Minehart
2022-09-14 09:07:09 -05:00
committed by GitHub
parent 5a1ba20856
commit c69a37f8c2
3 changed files with 13 additions and 4 deletions

View File

@ -3,6 +3,7 @@ load(
'identify_runner_step',
'download_grabpl_step',
'lint_drone_step',
'compile_build_cmd',
)
load(
@ -14,6 +15,7 @@ def verify_drone(trigger, ver_mode):
steps = [
identify_runner_step(),
download_grabpl_step(),
compile_build_cmd(),
lint_drone_step(),
]
return pipeline(

View File

@ -164,7 +164,7 @@ def lint_drone_step():
'name': 'lint-drone',
'image': curl_image,
'commands': [
'./bin/grabpl verify-drone',
'./bin/build verify-drone',
],
'depends_on': [
'grabpl',