diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-11-14 22:41:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 22:41:32 +0300 |
commit | 17580ee22f38b3a16e6531a8139629fd2fd8234a (patch) | |
tree | d18d553e14e92dec4ccfe9b6ca3e4ccb6a1ec50f /test/dotnet/scenarios.json | |
parent | 258b107b39db9f28703bf6bfeed3102d54e1cafe (diff) |
Add .NET 7, drop .NET 5 (#269)
* Add .NET 7, drop .NET 5
* Add libssl3 to common-utils for jammy
* Handle lts/latest hard coding
* Fix, improve tests
* Bump version
* Fix situation where version could come from either MS repo or OS
* Remove unused option
* Bump common version
* Remove unused function
* Restore DOTNET_ROOT per feedback
Diffstat (limited to 'test/dotnet/scenarios.json')
-rw-r--r-- | test/dotnet/scenarios.json | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/test/dotnet/scenarios.json b/test/dotnet/scenarios.json index edf4a75..37f83d5 100644 --- a/test/dotnet/scenarios.json +++ b/test/dotnet/scenarios.json @@ -16,11 +16,60 @@ } } }, - "install_dotnet_5": { + "install_dotnet_6_bullseye": { + "image": "debian:bullseye", + "features": { + "dotnet": { + "version": "6" + } + } + }, + "install_dotnet_6_focal": { "image": "ubuntu:focal", "features": { "dotnet": { - "version": "5" + "version": "6" + } + } + }, + "install_dotnet_7_bullseye": { + "image": "debian:bullseye", + "features": { + "dotnet": { + "version": "7" + } + } + }, + "install_dotnet_7_jammy": { + "image": "ubuntu:jammy", + "features": { + "dotnet": { + "version": "7" + } + } + }, + "install_dotnet_latest": { + "image": "ubuntu:jammy", + "features": { + "dotnet": { + "version": "latest" + } + } + }, + "install_dotnet_lts": { + "image": "ubuntu:focal", + "features": { + "dotnet": { + "version": "lts" + } + } + }, + "install_wo_apt": { + "image": "ubuntu:jammy", + "features": { + "dotnet": { + "version": "7", + "installUsingApt": false } } } |