From 9de58b594aa4fe1d9694585e91355e147e5fb457 Mon Sep 17 00:00:00 2001 From: Olivier Benz Date: Sun, 10 Mar 2024 15:58:42 +0100 Subject: [PATCH] Remove Dev Containers with Clang 18 --- .../devcontainer.json | 82 ------------------- .../devcontainer.json | 81 ------------------ 2 files changed, 163 deletions(-) delete mode 100644 .devcontainer/debian-unstable-clang-18-libcpp/devcontainer.json delete mode 100644 .devcontainer/debian-unstable-clang-18/devcontainer.json diff --git a/.devcontainer/debian-unstable-clang-18-libcpp/devcontainer.json b/.devcontainer/debian-unstable-clang-18-libcpp/devcontainer.json deleted file mode 100644 index 3714d55..0000000 --- a/.devcontainer/debian-unstable-clang-18-libcpp/devcontainer.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "name": "R devel (Debian unstable, Clang 18, libc++)", - "build": { - "dockerfile": "../Debian.Dockerfile", - "context": "..", - "args": { - "BASE_IMAGE": "debian", - "BASE_IMAGE_TAG": "unstable", - "COMPILER": "clang", - "COMPILER_VERSION": "18", - "CXX_STDLIB": "libc++", - "CRAN": "https://cloud.r-project.org", - "R_VERSION": "devel", - // "NCPUS": "1", - "INSTALL_COMMON_UTILS": "true", - "USE_ZSH_FOR_ROOT": "unset-to-use-bash", - "SET_LANG": "en_US.UTF-8", - "SET_TZ": "Etc/UTC" - } - }, - - "onCreateCommand": "onCreateCommand.sh", - "postCreateCommand": "postCreateCommand.sh", - "postStartCommand": "postStartCommand.sh", - - "features": { - "ghcr.io/devcontainers/features/common-utils:2": { - "configureZshAsDefaultShell": true, - "upgradePackages": false, - "username": "vscode", - "userUid": "automatic", - "userGid": "automatic" - }, - // A comma separated list of packages to install - "ghcr.io/rocker-org/devcontainer-features/apt-packages:1": { - "packages": "qpdf" - } - }, - - "customizations": { - "vscode": { - "extensions": [ - "DavidAnson.vscode-markdownlint", - "eamodio.gitlens@11.7.0", - "editorconfig.editorconfig", - "GitHub.vscode-pull-request-github", - "grapecity.gc-excelviewer", - "mhutchie.git-graph", - "mutantdino.resourcemonitor", - "redhat.vscode-yaml", - "REditorSupport.r", - "timonwong.shellcheck", - "exiasr.hadolint", - "ms-vscode.cpptools" - ], - "settings": { - "gitlens.showWelcomeOnInstall": false, - "gitlens.showWhatsNewAfterUpgrades": false, - "r.bracketedPaste": true, - "r.plot.useHttpgd": true, - "r.rterm.linux": "/usr/local/bin/radian", - "r.rterm.option": [ - "--no-save", - "--no-restore" - ], - "r.workspaceViewer.showObjectSize": true, - "resmon.show.battery": false, - "resmon.show.cpufreq": false - } - } - }, - - // Set 'remoteUser' to 'root' to connect as root instead. - "remoteUser": "vscode", - - "remoteEnv": { - // Pip: Install packages to the user site - "PIP_USER": "1", - // A comma separated list of packages to install - "R_PACKAGES": "fontquiver" - } -} diff --git a/.devcontainer/debian-unstable-clang-18/devcontainer.json b/.devcontainer/debian-unstable-clang-18/devcontainer.json deleted file mode 100644 index 3e0f6a1..0000000 --- a/.devcontainer/debian-unstable-clang-18/devcontainer.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "name": "R devel (Debian unstable, Clang 18)", - "build": { - "dockerfile": "../Debian.Dockerfile", - "context": "..", - "args": { - "BASE_IMAGE": "debian", - "BASE_IMAGE_TAG": "unstable", - "COMPILER": "clang", - "COMPILER_VERSION": "18", - "CRAN": "https://cloud.r-project.org", - "R_VERSION": "devel", - // "NCPUS": "1", - "INSTALL_COMMON_UTILS": "true", - "USE_ZSH_FOR_ROOT": "unset-to-use-bash", - "SET_LANG": "en_US.UTF-8", - "SET_TZ": "Etc/UTC" - } - }, - - "onCreateCommand": "onCreateCommand.sh", - "postCreateCommand": "postCreateCommand.sh", - "postStartCommand": "postStartCommand.sh", - - "features": { - "ghcr.io/devcontainers/features/common-utils:2": { - "configureZshAsDefaultShell": true, - "upgradePackages": false, - "username": "vscode", - "userUid": "automatic", - "userGid": "automatic" - }, - // A comma separated list of packages to install - "ghcr.io/rocker-org/devcontainer-features/apt-packages:1": { - "packages": "qpdf" - } - }, - - "customizations": { - "vscode": { - "extensions": [ - "DavidAnson.vscode-markdownlint", - "eamodio.gitlens@11.7.0", - "editorconfig.editorconfig", - "GitHub.vscode-pull-request-github", - "grapecity.gc-excelviewer", - "mhutchie.git-graph", - "mutantdino.resourcemonitor", - "redhat.vscode-yaml", - "REditorSupport.r", - "timonwong.shellcheck", - "exiasr.hadolint", - "ms-vscode.cpptools" - ], - "settings": { - "gitlens.showWelcomeOnInstall": false, - "gitlens.showWhatsNewAfterUpgrades": false, - "r.bracketedPaste": true, - "r.plot.useHttpgd": true, - "r.rterm.linux": "/usr/local/bin/radian", - "r.rterm.option": [ - "--no-save", - "--no-restore" - ], - "r.workspaceViewer.showObjectSize": true, - "resmon.show.battery": false, - "resmon.show.cpufreq": false - } - } - }, - - // Set 'remoteUser' to 'root' to connect as root instead. - "remoteUser": "vscode", - - "remoteEnv": { - // Pip: Install packages to the user site - "PIP_USER": "1", - // A comma separated list of packages to install - "R_PACKAGES": "fontquiver" - } -}