diff options
author | Josh Spicer <joshspicer@github.com> | 2022-08-24 00:23:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 00:23:21 +0300 |
commit | f82307ad60514d1e912a9aa2b64204721fe955eb (patch) | |
tree | bc1799743ef7620c3e460d54f77c1fac3003fd4c /test-scenarios/scenarios.json | |
parent | 84f4996643b84c6f3dcd5c3edc72ae176dceaf65 (diff) |
test updates to adopt https://github.com/devcontainers/cli/pull/124 (#114)
* test updates to adopt https://github.com/devcontainers/cli/pull/124
* remove accidental tgz check in
* typo in option
* typo in python install script on dotnet6/jammy branch
* no scenarios
* code review and test name
* Delete install_os_provided_python.sh
Diffstat (limited to 'test-scenarios/scenarios.json')
-rw-r--r-- | test-scenarios/scenarios.json | 130 |
1 files changed, 0 insertions, 130 deletions
diff --git a/test-scenarios/scenarios.json b/test-scenarios/scenarios.json deleted file mode 100644 index ddf15d0..0000000 --- a/test-scenarios/scenarios.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "install_os_provided_python": { - "image": "mcr.microsoft.com/devcontainers/base:0-bullseye", - "features": { - "node": "latest", - "python": "os-provided" - } - }, - "install_gradle_and_maven": { - "image": "ubuntu:focal", - "features": { - "java": { - "version": "latest", - "installGradle": true, - "installMaven": true - } - } - }, - "install_additional_php": { - "image": "ubuntu:focal", - "features": { - "php": { - "version": "8.1.4", - "additionalVersions": "8.0.17,8.0.3" - } - } - }, - "install_additional_java": { - "image": "ubuntu:focal", - "features": { - "java": { - "version": "17", - "additionalVersions": "11,8" - } - } - }, - "install_jupyterlab": { - "image": "mcr.microsoft.com/devcontainers/base:focal", - "remoteUser": "vscode", - "features": { - "common-utils": { - "username": "vscode" - }, - "python": { - "installJupyterlab": true, - "configureJupyterlabAllowOrigin": "*" - } - } - }, - "install_additional_node": { - "image": "debian:11", - "features": { - "node": { - "version": "latest", - "additionalVersions": "v17.9.1,v14.19.3" - } - } - }, - "install_additional_python": { - "image": "ubuntu:focal", - "features": { - "python": { - "version": "3.10.5", - "additionalVersions": "3.8,3.9.13" - } - } - }, - "install_additional_ruby": { - "image": "ubuntu:focal", - "features": { - "ruby": { - "version": "3.1.2", - "additionalVersions": "2.5,3.0.4" - } - } - }, - "install_additional_dotnet": { - "image": "ubuntu:focal", - "features": { - "dotnet": { - "version": "6.0.301", - "additionalVersions": "5.0,3.1.420" - } - } - }, - "install_dotnet_5": { - "image": "ubuntu:focal", - "features": { - "dotnet": { - "version": "5" - } - } - }, - "install_dotnet_3": { - "image": "ubuntu:focal", - "features": { - "dotnet": { - "version": "3" - } - } - }, - "rust_at_pinned_version": { - "image": "ubuntu:focal", - "features": { - "rust": { - "version": "1.62.0" - } - } - }, - "install_cudnn_nvxt": { - "image": "debian", - "features": { - "nvidia-cuda": { - "installCudnn": true, - "installNvtx": true - } - } - }, - "install_cudnn_nvxt_version": { - "image": "debian", - "features": { - "nvidia-cuda": { - "installCudnn": true, - "installNvtx": true, - "cudaVersion": "11.5", - "cudnnVersion": "8.3.2.44" - } - } - } -}
\ No newline at end of file |