You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: bump version for the release
test: use the latest CLI version for testing
feat(test): improve logging for tests
- log when core install starts
fix(test): regressions due to platform change
- change core version to `3.0.0-arduino3r2`,
- the vendor ID is `arduino` and not `esp32`
anymore, and
- use the AVR core for negative tests: it does
not have a default programmer set. Hence, the
expected error is no triggered.
Ref: arduino/arduino-language-server#177
Signed-off-by: Akos Kitta <[email protected]>
* If `true`, the logging is not forwarded to the _Output_ view via the language client.
56
56
*/
57
57
readonlysilentOutput?: boolean;
58
+
/**
59
+
* Number of async workers used by `clangd`. Background index also uses this many workers. If `0`, `clangd` uses all available cores. It's `0` by default.
60
+
*/
61
+
readonlyjobs?: number;
58
62
}
59
63
60
64
/**
@@ -177,6 +181,7 @@ async function buildLanguageClient(
177
181
flags,
178
182
env,
179
183
log,
184
+
jobs,
180
185
}=config;
181
186
constargs=[
182
187
'-clangd',
@@ -216,6 +221,10 @@ async function buildLanguageClient(
{platform: 'arduino:avr'},// this is an arbitrary core without default programmer set to get the expected error from the CLI with the --programmer value is missing
0 commit comments