Skip to content

Commit

Permalink
feat: Support custom executor (#55)
Browse files Browse the repository at this point in the history
Co-authored-by: yangchoo <[email protected]>
  • Loading branch information
yangchoo and yangchoo authored May 11, 2023
1 parent 803ad0e commit 217f901
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/jobs/continue.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
description: |
Extend the default CircleCI config at .circleci/config.yml to include other 'modules', then submit it as a continuation.
executor: python
executor: << parameters.executor >>
resource_class: << parameters.resource-class >>
parameters:
executor:
description: The name of the custom executor to use.
type: executor
default: python
resource-class:
type: enum
enum: [small, medium, large, xlarge, 2xlarge]
Expand Down

0 comments on commit 217f901

Please sign in to comment.