Update to .NET SDK 6.0.103 and Runtime 6.0.3

This commit is contained in:
Omair Majid 2022-03-11 08:35:36 -05:00
parent 4f642ff2a7
commit 249b125e10
4 changed files with 18 additions and 8 deletions

1
.gitignore vendored
View File

@ -15,3 +15,4 @@
/dotnet-9e8b04bbff820c93c142f99a507a46b976f5c14c.tar.gz /dotnet-9e8b04bbff820c93c142f99a507a46b976f5c14c.tar.gz
/dotnet-v6.0.101.tar.gz /dotnet-v6.0.101.tar.gz
/dotnet-v6.0.102.tar.gz /dotnet-v6.0.102.tar.gz
/dotnet-v6.0.103.tar.gz

View File

@ -20,10 +20,10 @@
# until that's done, disable LTO. This has to happen before setting the flags below. # until that's done, disable LTO. This has to happen before setting the flags below.
%define _lto_cflags %{nil} %define _lto_cflags %{nil}
%global host_version 6.0.2 %global host_version 6.0.3
%global runtime_version 6.0.2 %global runtime_version 6.0.3
%global aspnetcore_runtime_version %{runtime_version} %global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 6.0.102 %global sdk_version 6.0.103
%global templates_version %{runtime_version} %global templates_version %{runtime_version}
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }') #%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
@ -241,8 +241,10 @@ Requires: dotnet-hostfxr-6.0%{?_isa} >= %{host_rpm_version}-%{release}
# libicu is dlopen()ed # libicu is dlopen()ed
Requires: libicu%{?_isa} Requires: libicu%{?_isa}
# See src/runtime.*/src/libraries/Native/AnyOS/brotli-version.txt
Provides: bundled(libbrotli) = 1.0.9
%if %{use_bundled_libunwind} %if %{use_bundled_libunwind}
# See runtime.*/src/coreclr/pal/src/libunwind/libunwind-version.txt # See src/runtime.*/src/coreclr/pal/src/libunwind/libunwind-version.txt
Provides: bundled(libunwind) = 1.5.rc1.28.g9165d2a1 Provides: bundled(libunwind) = 1.5.rc1.28.g9165d2a1
%endif %endif
@ -663,6 +665,9 @@ export COMPlus_LTTng=0
%changelog %changelog
* Thu Mar 10 2022 Omair Majid <omajid@redhat.com> - 6.0.103-1
- Update to .NET SDK 6.0.103 and Runtime 6.0.3
* Mon Feb 14 2022 Omair Majid <omajid@redhat.com> - 6.0.102-1 * Mon Feb 14 2022 Omair Majid <omajid@redhat.com> - 6.0.102-1
- Update to .NET SDK 6.0.102 and Runtime 6.0.2 - Update to .NET SDK 6.0.102 and Runtime 6.0.2

View File

@ -1 +1 @@
SHA512 (dotnet-v6.0.102.tar.gz) = dcb4102b1a6c9e1889d80f8cecf30da00ad16320cbbf14de891db632ebaa0b872501865957429107ade0caef569a2f2ed5ccb70111de7772838b820997f0c36e SHA512 (dotnet-v6.0.103.tar.gz) = 7fc7f9f8aa9b7491a72884ec08ea3269a35ee5d6295e19b8c9b4d5b61262bebcfeae8f945bf2bdb0f1cb4ebdfd57f9a06490e8062e0319494ddecc4606e8d052

View File

@ -13,18 +13,22 @@
tests: tests:
- download_test_runner: - download_test_runner:
dir: ./ dir: ./
run: wget --no-verbose https://github.com/redhat-developer/dotnet-bunny/releases/latest/download/turkey-$(uname -m) -O turkey && chmod +x ./turkey run: wget --no-verbose https://github.com/redhat-developer/dotnet-bunny/releases/latest/download/turkey.tar.gz && tar xf turkey.tar.gz
- print_test_runner_version: - print_test_runner_version:
dir: ./ dir: ./
run: ./turkey --version run: dotnet turkey/Turkey.dll --version
- regular: - regular:
dir: ./ dir: ./
run: ./turkey -l={{ remote_artifacts }} dotnet-regular-tests run: dotnet turkey/Turkey.dll -l={{ remote_artifacts }} dotnet-regular-tests
required_packages: required_packages:
- aspnetcore-runtime-6.0
- babeltrace - babeltrace
- bash-completion - bash-completion
- binutils - binutils
- dotnet-sdk-6.0
- dotnet-runtime-6.0
- expect - expect
- git
- jq - jq
- lldb - lldb
- lttng-tools - lttng-tools