aboutsummaryrefslogtreecommitdiff
path: root/src/dotnet/scripts/dotnet-helpers.sh
diff options
context:
space:
mode:
authorSteven <steven.liekens@gmail.com>2023-09-11 21:16:24 +0300
committerGitHub <noreply@github.com>2023-09-11 21:16:24 +0300
commit96c1eea40fc97b471ba0b33fcc79273c7ce586c7 (patch)
tree1ac35df447d38c00cb35e07a7b876dc985fc1329 /src/dotnet/scripts/dotnet-helpers.sh
parent038bed3d58a84885da8a008b80905da17d57a543 (diff)
Use dotnet-install.sh in .NET feature (#628)feature_dotnet_2.0.0
* Use dotnet-install.sh in .NET feature * Use latest.version files * Cleanup runtime args * Use latest.version files in tests as well * Improve tests, remove code duplication * Add stderr helper * Validate version inputs * Use suggested description Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com> * Shorter version description Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com> * Shorter version description Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com> * Clean up apt lists * Verify 7.0 is latest * Fix PATH, add test for .NET global tools * Include a copy of dotnet-install.sh in the Feature * Configure useful env variables * Use stringly typed booleans * Keep imperative writing style in option hints * Update maintainers Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com> * Move dotnet-install.sh into a vendor directory * Refactor variables * Amend * Amend 2 * Use default options from devcontainer-feature.json * Add back variables * Fix shellchek warning in fetch_latest_sdk_version * Inline install_version function * Fix ShellCheck warnings * Improve CSV parsing * Default to latest when configuring an empty version * Add support for runtime-only configurations * Move 'none' check higher up * Deduplicate helper functions, sort into files * Address the user more directly in NOTES * Remove unnecessary defaults * Replace feature -> Feature Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com> * Add update-dotnet-install-script workflow * Apply suggestions from code review Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com> * Don't skip ci for automated script update --------- Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com>
Diffstat (limited to 'src/dotnet/scripts/dotnet-helpers.sh')
-rw-r--r--src/dotnet/scripts/dotnet-helpers.sh119
1 files changed, 119 insertions, 0 deletions
diff --git a/src/dotnet/scripts/dotnet-helpers.sh b/src/dotnet/scripts/dotnet-helpers.sh
new file mode 100644
index 0000000..bda0c9c
--- /dev/null
+++ b/src/dotnet/scripts/dotnet-helpers.sh
@@ -0,0 +1,119 @@
+#!/bin/bash
+#-------------------------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
+#-------------------------------------------------------------------------------------------------------------
+#
+# Docs: https://github.com/devcontainers/features/tree/main/src/dotnet
+# Maintainer: The Dev Container spec maintainers
+DOTNET_SCRIPTS=$(dirname "${BASH_SOURCE[0]}")
+DOTNET_INSTALL_SCRIPT="$DOTNET_SCRIPTS/vendor/dotnet-install.sh"
+DOTNET_INSTALL_DIR='/usr/share/dotnet'
+
+# Prints the latest dotnet version in the specified channel
+# Usage: fetch_latest_version_in_channel <channel> [<runtime>]
+# Example: fetch_latest_version_in_channel "LTS"
+# Example: fetch_latest_version_in_channel "6.0" "dotnet"
+# Example: fetch_latest_version_in_channel "6.0" "aspnetcore"
+fetch_latest_version_in_channel() {
+ local channel="$1"
+ local runtime="$2"
+ if [ "$runtime" = "dotnet" ]; then
+ wget -qO- "https://dotnetcli.azureedge.net/dotnet/Runtime/$channel/latest.version"
+ elif [ "$runtime" = "aspnetcore" ]; then
+ wget -qO- "https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/$channel/latest.version"
+ else
+ wget -qO- "https://dotnetcli.azureedge.net/dotnet/Sdk/$channel/latest.version"
+ fi
+
+}
+
+# Prints the latest dotnet version
+# Usage: fetch_latest_version [<runtime>]
+# Example: fetch_latest_version
+# Example: fetch_latest_version "dotnet"
+# Example: fetch_latest_version "aspnetcore"
+fetch_latest_version() {
+ local runtime="$1"
+ local sts_version
+ local lts_version
+ sts_version=$(fetch_latest_version_in_channel "STS" "$runtime")
+ lts_version=$(fetch_latest_version_in_channel "LTS" "$runtime")
+ if [[ "$sts_version" > "$lts_version" ]]; then
+ echo "$sts_version"
+ else
+ echo "$lts_version"
+ fi
+}
+
+# Installs a version of the .NET SDK
+# Usage: install_sdk <version>
+install_sdk() {
+ local inputVersion="$1"
+ local version=""
+ local channel=""
+ if [[ "$inputVersion" == "latest" ]]; then
+ # Fetch the latest version manually, because dotnet-install.sh does not support it directly
+ version=$(fetch_latest_version)
+ elif [[ "$inputVersion" == "lts" ]]; then
+ # When user input is 'lts'
+ # Then version=latest, channel=LTS
+ version="latest"
+ channel="LTS"
+ elif [[ "$inputVersion" =~ ^[0-9]+\.[0-9]+$ ]]; then
+ # When user input is form 'A.B' like '3.1'
+ # Then version=latest, channel=3.1
+ version="latest"
+ channel="$inputVersion"
+ elif [[ "$inputVersion" =~ ^[0-9]+\.[0-9]+\.[0-9]xx$ ]]; then
+ # When user input is form 'A.B.Cxx' like '6.0.4xx'
+ # Then version=latest, channel=6.0.4xx
+ version="latest"
+ channel="$inputVersion"
+ else
+ # Assume version is an exact version string like '6.0.413' or '8.0.100-rc.2.23425.18'
+ version="$inputVersion"
+ fi
+
+ # Currently this script does not make it possible to qualify the version, 'GA' is always implied
+ echo "Executing $DOTNET_INSTALL_SCRIPT --version $version --channel $channel --install-dir $DOTNET_INSTALL_DIR --no-path"
+ "$DOTNET_INSTALL_SCRIPT" \
+ --version "$version" \
+ --channel "$channel" \
+ --install-dir "$DOTNET_INSTALL_DIR" \
+ --no-path
+}
+
+# Installs a version of the .NET Runtime
+# Usage: install_runtime <runtime> <version>
+install_runtime() {
+ local runtime="$1"
+ local inputVersion="$2"
+ local version=""
+ local channel=""
+ if [[ "$inputVersion" == "latest" ]]; then
+ # Fetch the latest version manually, because dotnet-install.sh does not support it directly
+ version=$(fetch_latest_version "$runtime")
+ elif [[ "$inputVersion" == "lts" ]]; then
+ # When user input is 'lts'
+ # Then version=latest, channel=LTS
+ version="latest"
+ channel="LTS"
+ elif [[ "$inputVersion" =~ ^[0-9]+\.[0-9]+$ ]]; then
+ # When user input is form 'A.B' like '3.1'
+ # Then version=latest, channel=3.1
+ version="latest"
+ channel="$inputVersion"
+ else
+ # Assume version is an exact version string like '6.0.21' or '8.0.0-preview.7.23375.6'
+ version="$inputVersion"
+ fi
+
+ echo "Executing $DOTNET_INSTALL_SCRIPT --runtime $runtime --version $version --channel $channel --install-dir $DOTNET_INSTALL_DIR --no-path"
+ "$DOTNET_INSTALL_SCRIPT" \
+ --runtime "$runtime" \
+ --version "$version" \
+ --channel "$channel" \
+ --install-dir "$DOTNET_INSTALL_DIR" \
+ --no-path
+}