Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(poetry-publish): Allow users to specify timeout for poetry build #158

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions poetry/orb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ jobs:
workflows with complicated build processes.
type: boolean
default: true
build_timeout:
description: >
Sets the timeout value for 'poetry build' step. Useful for
workflows with longer build times.
type: string
default: 10m
cwd:
default: '.'
description: >
Expand Down Expand Up @@ -173,6 +179,7 @@ jobs:
steps:
- run:
command: poetry build
no_output_timeout: <<parameters.build_timeout>>
working_directory: <<parameters.cwd>>
- when:
condition: << parameters.repository_url >>
Expand Down
Loading