mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-22 19:41:08 +07:00
Update verify-dotnet.ps1
This commit is contained in:
parent
e8ac21d503
commit
50b46b3b1d
2
.github/workflows/test-dotnet.yml
vendored
2
.github/workflows/test-dotnet.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
dotnet-version: ['2.1', '2.2', '3.0', '3.1', '5.0', '6.0', '7.0']
|
dotnet-version: ['2.1', '2.2', '3.0', '3.1', '5.0', '6.0', '7.0', '8.0']
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -71,6 +71,7 @@ $targetFrameworkVersionMap = @{
|
|||||||
"5.0" = "net5.0";
|
"5.0" = "net5.0";
|
||||||
"6.0" = "net6.0";
|
"6.0" = "net6.0";
|
||||||
"7.0" = "net7.0";
|
"7.0" = "net7.0";
|
||||||
|
"8.0" = "net8.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($version in $Versions)
|
foreach ($version in $Versions)
|
||||||
@ -78,10 +79,18 @@ foreach ($version in $Versions)
|
|||||||
# Creating temporary global.json file inside e2e-test-csproj dir and setting exact version of .NET inside allows to override default behavior of .NET and run build and tests on that exact version.
|
# Creating temporary global.json file inside e2e-test-csproj dir and setting exact version of .NET inside allows to override default behavior of .NET and run build and tests on that exact version.
|
||||||
Write-Host "Creating temporary global.json file for $version .NET version."
|
Write-Host "Creating temporary global.json file for $version .NET version."
|
||||||
& $dotnet new globaljson --sdk-version $version --force
|
& $dotnet new globaljson --sdk-version $version --force
|
||||||
|
if (!(Test-Path "./global.json"))
|
||||||
|
{
|
||||||
|
throw "An error occured while creating the global.json file. Exit code: $LASTEXITCODE"
|
||||||
|
}
|
||||||
Write-Host "The global.json file for the version $version is created. Currently used .NET version is: $(& $dotnet --version)."
|
Write-Host "The global.json file for the version $version is created. Currently used .NET version is: $(& $dotnet --version)."
|
||||||
|
|
||||||
# Environment variable TEST_TARGET_FRAMEWORK is used inside the test.csproj file to target required framework version
|
# Environment variable TEST_TARGET_FRAMEWORK is used inside the test.csproj file to target required framework version
|
||||||
$version -match "^(?<key>\d+\.\d+)"
|
$version -match "^(?<key>\d+\.\d+)" | Out-Null
|
||||||
|
if (!($targetFrameworkVersionMap.ContainsKey($Matches.key)))
|
||||||
|
{
|
||||||
|
throw "The map with the framework targets doesn't contain a target name for the version $version."
|
||||||
|
}
|
||||||
Write-Host "Setting the TEST_TARGET_FRAMEWORK environment variable to $($targetFrameworkVersionMap[$Matches.key])"
|
Write-Host "Setting the TEST_TARGET_FRAMEWORK environment variable to $($targetFrameworkVersionMap[$Matches.key])"
|
||||||
[Environment]::SetEnvironmentVariable('TEST_TARGET_FRAMEWORK', $($targetFrameworkVersionMap[$Matches.key]))
|
[Environment]::SetEnvironmentVariable('TEST_TARGET_FRAMEWORK', $($targetFrameworkVersionMap[$Matches.key]))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user