File tree 3 files changed +7
-4
lines changed
arduino-ide-extension/src/browser/contributions
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export class VerifySketch extends CoreServiceContribution {
115
115
const verbose = this . preferences . get ( 'arduino.compile.verbose' ) ;
116
116
const compilerWarnings = this . preferences . get ( 'arduino.compile.warnings' ) ;
117
117
this . outputChannelManager . getChannel ( 'Arduino' ) . clear ( ) ;
118
- const result = await this . coreService . compile ( {
118
+ const { buildOutputUri } = await this . coreService . compile ( {
119
119
sketch,
120
120
board,
121
121
optimizeForDebug : this . editorMode . compileForDebug ,
@@ -124,7 +124,10 @@ export class VerifySketch extends CoreServiceContribution {
124
124
sourceOverride,
125
125
compilerWarnings,
126
126
} ) ;
127
- console . log ( 'THE BUILD CACHE IS AT ' + result . buildOutputUri ) ;
127
+ this . commandService . executeCommand (
128
+ 'arduino.languageserver.notifyBuildDidComplete' ,
129
+ { fqbn, buildOutputUri }
130
+ ) ;
128
131
this . messageService . info (
129
132
nls . localize ( 'arduino/sketch/doneCompiling' , 'Done compiling.' ) ,
130
133
{ timeout : 3000 }
Original file line number Diff line number Diff line change 141
141
"theiaPluginsDir" : " plugins" ,
142
142
"theiaPlugins" : {
143
143
"vscode-builtin-cpp" : " https://open-vsx.org/api/vscode/cpp/1.52.1/file/vscode.cpp-1.52.1.vsix" ,
144
- "vscode-arduino-tools" : " https://downloads.arduino.cc/ vscode-arduino-tools/vscode-arduino-tools-0.0.2-beta.2.vsix" ,
144
+ "vscode-arduino-tools" : " https://github.com/kittaakos/ vscode-arduino-tools/raw/arduino/arduino-ide%23714/build-artifacts /vscode-arduino-tools-0.0.2-beta.2.vsix" ,
145
145
"vscode-builtin-json" : " https://open-vsx.org/api/vscode/json/1.46.1/file/vscode.json-1.46.1.vsix" ,
146
146
"vscode-builtin-json-language-features" : " https://open-vsx.org/api/vscode/json-language-features/1.46.1/file/vscode.json-language-features-1.46.1.vsix" ,
147
147
"cortex-debug" : " https://open-vsx.org/api/marus25/cortex-debug/0.3.10/file/marus25.cortex-debug-0.3.10.vsix" ,
Original file line number Diff line number Diff line change 75
75
"theiaPluginsDir" : " plugins" ,
76
76
"theiaPlugins" : {
77
77
"vscode-builtin-cpp" : " https://open-vsx.org/api/vscode/cpp/1.52.1/file/vscode.cpp-1.52.1.vsix" ,
78
- "vscode-arduino-tools" : " https://downloads.arduino.cc/ vscode-arduino-tools/vscode-arduino-tools-0.0.2-beta.2.vsix" ,
78
+ "vscode-arduino-tools" : " https://github.com/kittaakos/ vscode-arduino-tools/raw/arduino/arduino-ide%23714/build-artifacts /vscode-arduino-tools-0.0.2-beta.2.vsix" ,
79
79
"vscode-builtin-json" : " https://open-vsx.org/api/vscode/json/1.46.1/file/vscode.json-1.46.1.vsix" ,
80
80
"vscode-builtin-json-language-features" : " https://open-vsx.org/api/vscode/json-language-features/1.46.1/file/vscode.json-language-features-1.46.1.vsix" ,
81
81
"cortex-debug" : " https://open-vsx.org/api/marus25/cortex-debug/0.3.10/file/marus25.cortex-debug-0.3.10.vsix" ,
You can’t perform that action at this time.
0 commit comments