8000 Compile extract all artifacts by cmaglie · Pull Request #687 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

Compile extract all artifacts #687

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

Merged
merged 10 commits into from
May 15, 2020
Next Next commit
Deprecated exportFile/importFile in favor of exportDir/importDir
  • Loading branch information
cmaglie committed May 15, 2020
commit b0089ab46ff1bd573c191290b2ad4a0f4348f053
90 changes: 86 additions & 4 deletions rpc/commands/commands.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 40 additions & 30 deletions rpc/commands/compile.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion rpc/commands/compile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ message CompileReq {
bool verbose = 10; // Turns on verbose mode.
bool quiet = 11; // Suppresses almost every output.
string vidPid = 12; // VID/PID specific build properties.
string exportFile = 13; // The compiled binary is written to this file
string exportFile = 13 [deprecated = true]; // DEPRECATED: use exportDir instead
int32 jobs = 14; // The max number of concurrent compiler instances to run (as make -jx)
repeated string libraries = 15; // List of custom libraries paths separated by commas. Or can be used multiple times for multiple libraries paths.
bool optimizeForDebug = 16; // Optimize compile output for debug, not for release
bool dryRun = 17; // When set to true the compiled binary will not be copied to the export directory
string export_dir = 18; // Optional: save the build artifacts in this directory, the directory must exist
}

message CompileResp {
Expand Down
Loading
0