Compare commits

..

2 Commits

Author SHA1 Message Date
86c1f6d6a7 feat(devcontainer): update GPG agent socket mapping
- Adjusts volume mapping for GPG agent socket to correct path
- Ensures compatibility with updated user directory structure
2025-04-28 15:27:19 +00:00
1ab18cda83 feat(devcontainer): update image source and post-start setup
- Switches devcontainer image to a self-hosted registry for consistency
- Updates post-start command to include hdlbuild installation via pip
2025-04-28 15:26:22 +00:00

View File

@@ -1,12 +1,12 @@
{
"name": "Xilinx ISE 14.7",
"image": "xilinx-ise:14.7",
"image": "git.0xmax42.io/simdev/xilinx-ise:latest",
"runArgs": [
"--privileged",
"--cap-add=SYS_ADMIN",
"--shm-size=2g",
"-v",
"/run/user/1000/gnupg/S.gpg-agent:/run/user/1000/gnupg/S.gpg-agent"
"/run/user/1000/gnupg/S.gpg-agent:/home/xilinx/.gnupg/S.gpg-agent"
],
"customizations": {
"vscode": {
@@ -26,5 +26,5 @@
"forwardPorts": [
10000
],
"postStartCommand": "git config --global user.signingkey 87C8A5DD5C14DF55DBE1DB4199AC216D447E61C0 && git config --global gpg.format openpgp && git config --global commit.gpgsign true && git config --global tag.forceSignAnnotated true && sudo apt update && sudo apt upgrade -y"
"postStartCommand": "git config --global user.signingkey 87C8A5DD5C14DF55DBE1DB4199AC216D447E61C0 && git config --global gpg.format openpgp && git config --global commit.gpgsign true && git config --global tag.forceSignAnnotated true && pip install --upgrade --index-url https://git.0xmax42.io/api/packages/maxp/pypi/simple/ --extra-index-url https://pypi.org/simple/ hdlbuild"
}