File tree Expand file tree Collapse file tree 4 files changed +38
-0
lines changed Expand file tree Collapse file tree 4 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
matrix :
15
15
features :
16
+ - asdf-vm.com
16
17
- atuin.sh
17
18
- btop
18
19
- deno.com
39
40
strategy :
40
41
matrix :
41
42
features :
43
+ - asdf-vm.com
42
44
- atuin.sh
43
45
- btop
44
46
- deno.com
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " asdf-vm.com" ,
3
+ "id" : " asdf-vm.com" ,
4
+ "version" : " 1.0.0" ,
5
+ "description" : " Install \" asdf\" binary to the HOME folder of the REMOTE user" ,
6
+ "documentationURL" : " https://github.com/devcontainer-community/devcontainer-features/tree/main/src/asdf-vm.com" ,
7
+ "options" : {
8
+ "version" : {
9
+ "type" : " string" ,
10
+ "default" : " latest" ,
11
+ "proposals" : [
12
+ " latest"
13
+ ],
14
+ "description" : " Version of \" asdf\" to install."
15
+ }
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+ set -e
5
+
6
+ # Optional: Import test library bundled with the devcontainer CLI
7
+ # See https://github.com/devcontainers/cli/blob/HEAD/docs/features/test.md#dev-container-features-test-lib
8
+ # Provides the 'check' and 'reportResults' commands.
9
+ source dev-container-features-test-lib
10
+
11
+ # Feature-specific tests
12
+ # The 'check' command comes from the dev-container-features-test-lib. Syntax is...
13
+ # check <LABEL> <cmd> [args...]
14
+
15
+ # check "execute command" bash -c "/home/vscode/.asdf/bin/asdf --version" # TODO: Fix this test
16
+
17
+ # Report results
18
+ # If any of the checks above exited with a non-zero exit code, the test will fail.
19
+ reportResults
You can’t perform that action at this time.
0 commit comments