From ab802885688efb5dd5410421ea2c3d1151d24e8c Mon Sep 17 00:00:00 2001 From: JP Ungaretti Date: Wed, 1 Mar 2023 07:57:41 +0000 Subject: Add runtime test --- test/dotnet/install_dotnet_runtime.sh | 15 +++++++++++++++ test/dotnet/scenarios.json | 9 +++++++++ 2 files changed, 24 insertions(+) create mode 100644 test/dotnet/install_dotnet_runtime.sh (limited to 'test') diff --git a/test/dotnet/install_dotnet_runtime.sh b/test/dotnet/install_dotnet_runtime.sh new file mode 100644 index 0000000..f7f2752 --- /dev/null +++ b/test/dotnet/install_dotnet_runtime.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +# some runtime installed +check "runtime" bash -c 'test "$(dotnet --list-runtimes | wc -l)" -gt 0' + +# no sdk installed +check "no sdk" bash -c 'test "$(dotnet --list-sdks | wc -l)" -eq 0' + +# Report result +reportResults diff --git a/test/dotnet/scenarios.json b/test/dotnet/scenarios.json index 120be7e..f865e60 100644 --- a/test/dotnet/scenarios.json +++ b/test/dotnet/scenarios.json @@ -47,5 +47,14 @@ "version": "7" } } + }, + "install_dotnet_runtime": { + "image": "ubuntu:jammy", + "features": { + "dotnet": { + "version": "6.0.14", + "runtimeOnly": true + } + } } } \ No newline at end of file -- cgit v1.2.3