Skip to content

Commit

Permalink
airbyte-ci: refactor GradleTask to run in subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Jan 21, 2025
1 parent f3705c9 commit 8399d12
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 197 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ async def run_connector_build(context: ConnectorContext) -> StepResult:
build_connector_tar_result = await BuildConnectorDistributionTar(context).run()
if build_connector_tar_result.status is not StepStatus.SUCCESS:
return build_connector_tar_result
dist_dir = await build_connector_tar_result.output.directory(dist_tar_directory_path(context))

dist_dir = await build_connector_tar_result.output.directory("build/distributions")
return await BuildConnectorImages(context).run(dist_dir)


Expand Down
Loading

0 comments on commit 8399d12

Please sign in to comment.