forked from microsoft/codespace-features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenarios.json
More file actions
83 lines (83 loc) · 2.36 KB
/
scenarios.json
File metadata and controls
83 lines (83 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"python38_and_keyring_debian": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
},
"artifacts-helper": {
"python": true
}
}
},
"python38_and_keyring_ubuntu": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
},
"artifacts-helper": {
"python": true
}
}
},
"python312_and_keyring_debian": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12"
},
"artifacts-helper": {
"python": true
}
}
},
"python_and_no_keyring": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.8"
},
"artifacts-helper": {
"python": false
}
}
},
"test_auth_wait": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"artifacts-helper": {}
}
},
"test_shim_integration": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"artifacts-helper": {
"dotnetAlias": true,
"npmAlias": true,
"nugetAlias": true
}
}
},
"test_fallback_execution": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/devcontainers/features/dotnet:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"artifacts-helper": {
"dotnetAlias": true,
"npmAlias": true,
"nugetAlias": true
}
}
},
"test_az_shim": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {},
"artifacts-helper": {
"azAlias": true
}
}
}
}