-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
infra: add javascript as a language with builder img #11106
Conversation
Ref: #11103 Signed-off-by: David Korczynski <david@adalogics.com>
Also adjusts some formatting which showed up when running |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with nits
default=constants.DEFAULT_LANGUAGE, | ||
choices=['c', 'c++', 'rust', 'go', 'jvm', 'swift', 'python', 'javascript'], | ||
help='Project language.') | ||
generate_parser.add_argument('--language', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe create a list from LANGUAGES_WITH_BUILDER_IMAGES and add C, C++ to it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated, but LANGUAGES_WITH_BUILDER_IMAGES to be a mapping rather than a list, wdyt?
Signed-off-by: David Korczynski <david@adalogics.com>
Signed-off-by: David Korczynski <david@adalogics.com>
Ref: #11103