-
Notifications
You must be signed in to change notification settings - Fork 264
Initial version of a devcontainer for Verible #2068
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
hzeller
merged 12 commits into
chipsalliance:master
from
kbrunham-intel:feat/devcontainer_dec23
Dec 12, 2025
+30
−0
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
1b002ff
Initial version
kbrunham-intel 12868ea
Merge branch 'chipsalliance:master' into feat/devcontainer_dec23
kbrunham-intel 7600ee3
Updated comments
kbrunham-intel f608a59
Fixed formatting
kbrunham-intel d9fd2a6
Moved comments based on code review feedback.
kbrunham-intel 4522d99
Merge branch 'chipsalliance:master' into feat/devcontainer_dec23
kbrunham-intel cd66401
Merge branch 'chipsalliance:master' into feat/devcontainer_dec23
kbrunham-intel ed764fc
Create README.md
kbrunham-intel fd76bc8
Removed unneeded commenbts
kbrunham-intel 2a9cf14
Updated to Ubuntu 24.04 to match main workflow
kbrunham-intel e8d1d36
Merge branch 'chipsalliance:master' into feat/devcontainer_dec23
kbrunham-intel d14e00d
Updated Dockerfile to use clang-format-17
kbrunham-intel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 @@ | ||
| # Available versions: https://github.com/devcontainers/images/tree/main/src/cpp | ||
| FROM mcr.microsoft.com/devcontainers/cpp:ubuntu-24.04 | ||
| RUN apt update && apt install -y clang-format-17 clang-tidy | ||
| # Bazelisk is a wrapper around installing Bazel. It will review the .bazelversion file in the workspace to determine which version of Bazel to install. | ||
| RUN wget https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64 -O /usr/local/bin/bazel && chmod a+rx /usr/local/bin/bazel && /usr/local/bin/bazel --version | ||
This file contains hidden or 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,6 @@ | ||
| # Devcontainer | ||
|
|
||
| This directory creates the devcontainer configuration enabling development in tools such as VS Code that can automatically run within a containerized enviroment. | ||
|
|
||
| The Dockerfile defines the environment to use | ||
|
|
This file contains hidden or 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,19 @@ | ||
| // For format details, see https://aka.ms/devcontainer.json. | ||
hzeller marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| { | ||
| "name": "Verible Dev", | ||
| "build": { | ||
| "dockerfile": "Dockerfile", | ||
| }, | ||
|
|
||
| // Configure tool-specific properties. | ||
| "customizations": { | ||
| // Configure properties specific to VS Code. | ||
| "vscode": { | ||
| "settings": {}, | ||
| "extensions": [ | ||
| "ms-vscode.cpptools-extension-pack" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.