File tree Expand file tree Collapse file tree 5 files changed +18
-2
lines changed Expand file tree Collapse file tree 5 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1313 matrix :
1414 features :
1515 - artifacts-helper
16+ - devtool
1617 - docfx
1718 - external-repository
1819 - microsoft-git
Original file line number Diff line number Diff line change 1616 with :
1717 filters : |
1818 artifacts-helper: ./**/artifacts-helper/**
19+ devtool: ./**/devtool/**
1920 docfx: ./**/docfx/**
2021 external-repository: ./**/external-repository/**
2122 microsoft-git: ./**/microsoft-git/**
Original file line number Diff line number Diff line change 1313 ]
1414 }
1515 },
16- "postCreateCommand" : " curl – sL https://aka.ms/InstallToolLinux.sh | sh -s DevTool "
16+ "postCreateCommand" : " curl - sL https://aka.ms/InstallToolLinux.sh | sh -s DevTool"
1717}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ check_packages() {
3131export DEBIAN_FRONTEND=noninteractive
3232
3333if [ " ${ID} " = " mariner" ]; then
34- tdnf install -y curl ca-certificates
34+ tdnf install -y curl ca-certificates tar
3535 tdnf clean all
3636else
3737 check_packages curl ca-certificates xdg-utils
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ # Optional: Import test library bundled with the devcontainer CLI
6+ source dev-container-features-test-lib
7+
8+ # Feature-specific tests
9+ check " dev" dev --version
10+
11+
12+ # Report results
13+ # If any of the checks above exited with a non-zero exit code, the test will fail.
14+ reportResults
You can’t perform that action at this time.
0 commit comments