-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add image variant with vscode specific settings (#314)
* feat: add image variant with vscode specific settings * chore: fix sign command for vscode container * chore(devcontainer.json): remove unnecessary properties for this container * chore: externalize metadata and extend contents * ci: add checkout step to build-push * chore: quote label data * chore: simplify devcontainer-metadata-vscode.json * chore: add back one extension * chore: add more plug-ins * chore: try to fix array escaping * chore: use jq tostring to convert json to label * chore: debug json magic * chore: escape, quote, unescape, doule escape... for victory * chore: hard-code metadata for now, I give up * chore: single quote content of label to prevent shell interpolation * chore: running out of ideas * chore: why can't you leave my quotes alone * ci: final victory * chore: add vscode settings * chore: change path to compile_commands * chore: update vscode plugin versions * chore: update documentation * docs: minor update on merge logic for devcontainer.metadata
- Loading branch information
Showing
6 changed files
with
148 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[ | ||
{ | ||
"remoteEnv": { "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" }, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]" | ||
] | ||
}, | ||
"settings": { | ||
"C_Cpp.intelliSenseEngine": "disabled", | ||
"C_Cpp.formatting": "clangFormat", | ||
"clangd.arguments": [ | ||
"--query-driver=/opt/**/arm-none-eabi-*", | ||
"--compile-commands-dir=${userHome}/.amp" | ||
], | ||
"cmake.copyCompileCommands": "${userHome}/.amp/compile_commands.json", | ||
"cmake.options.statusBarVisibility": "compact", | ||
"cortex-debug.gdbPath": "gdb-multiarch", | ||
"cortex-debug.objdumpPath": "arm-none-eabi-objdump", | ||
"sonarlint.pathToCompileCommands": "${userHome}/.amp/compile_commands.json" | ||
} | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters