Skip to content
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
6 changes: 6 additions & 0 deletions protos/core.proto
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ message CompileConfig {
// Whether to emit compilation debug logs.
bool verbose = 11;

// Supplementary key-value options for the compilation process,
// distinct from `project_config_override.vars` (which holds user vars).
// This can be used to pass environment-specific parameters or
// auxiliary configuration paths to the underlying execution engine.
map<string, string> additional_options = 12;
Comment thread
rafal-hawrylak marked this conversation as resolved.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's clarify who will be providing this configuration


reserved 2, 4, 5, 7, 9;
}

Expand Down
Loading