Compare commits
No commits in common. "c9s" and "c10s" have entirely different histories.
6
.gitignore
vendored
6
.gitignore
vendored
@ -58,6 +58,12 @@
|
||||
/dotnet-prebuilts-10.0.100-preview.6.25302.104-x64.tar.gz
|
||||
/dotnet-prebuilts-10.0.100-preview.6.25358.103-ppc64le.tar.gz
|
||||
/dotnet-prebuilts-10.0.100-preview.6.25358.103-s390x.tar.gz
|
||||
/dotnet-10.0.100-preview.7.25380.108.tar.gz
|
||||
/dotnet-10.0.100-preview.7.25380.108.tar.gz.sig
|
||||
/dotnet-prebuilts-10.0.100-preview.7.25322.101-arm64.tar.gz
|
||||
/dotnet-prebuilts-10.0.100-preview.7.25322.101-x64.tar.gz
|
||||
/dotnet-prebuilts-10.0.100-preview.7.25380.108-ppc64le.tar.gz
|
||||
/dotnet-prebuilts-10.0.100-preview.7.25380.108-s390x.tar.gz
|
||||
/dotnet-10.0.100-rc.1.25451.107.tar.gz
|
||||
/dotnet-10.0.100-rc.1.25451.107.tar.gz.sig
|
||||
/dotnet-prebuilts-10.0.100-rc.1.25420.111-x64.tar.gz
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
The dotnet10.0 package
|
||||
|
||||
This is the .NET 10.0 package for CentOS Stream/RHEL 9.
|
||||
This is the .NET 10.0 package for CentOS Stream/RHEL 10.
|
||||
|
||||
# Specification
|
||||
|
||||
|
||||
@ -599,10 +599,24 @@ CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/ -march=z13//')
|
||||
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/ -mtune=z14//')
|
||||
%endif
|
||||
|
||||
%if 0%{?rhel} >= 10
|
||||
# This *seems* to avoid https://github.com/dotnet/runtime/issues/119070
|
||||
# FIXME: Re-test this, and/or replace with upstream fix
|
||||
CFLAGS=$(echo $CFLAGS | sed -e 's/-march=x86-64-v3 //')
|
||||
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/-march=x86-64-v3 //')
|
||||
LDFLAGS=$(echo $LDFLAGS | sed -e 's/-march=x86-64-v3 //')
|
||||
%endif
|
||||
|
||||
# Enabling fortify-source and "-Wall -Weverything" produces new warnings from libc. Turn them off.
|
||||
CFLAGS="$CFLAGS -Wno-used-but-marked-unused"
|
||||
CXXFLAGS="$CXXFLAGS -Wno-used-but-marked-unused"
|
||||
|
||||
%if 0%{?fedora} >= 43 || 0%{?rhel} > 10
|
||||
# -Wall includes Wjump-misses-init in newer clang versions
|
||||
CFLAGS="$CFLAGS -Wno-jump-misses-init"
|
||||
CXXFLAGS="$CXXFLAGS -Wno-jump-misses-init"
|
||||
%endif
|
||||
|
||||
export EXTRA_CFLAGS="$CFLAGS"
|
||||
export EXTRA_CXXFLAGS="$CXXFLAGS"
|
||||
export EXTRA_LDFLAGS="$LDFLAGS"
|
||||
@ -638,8 +652,10 @@ system_libs=
|
||||
|
||||
%ifarch ppc64le s390x
|
||||
max_attempts=3
|
||||
timeout=5h
|
||||
%else
|
||||
max_attempts=1
|
||||
max_attempts=3
|
||||
timeout=120m
|
||||
%endif
|
||||
|
||||
function retry_until_success {
|
||||
@ -688,7 +704,7 @@ EOF
|
||||
chmod +x dotnet-rpm-build.sh
|
||||
|
||||
VERBOSE=1 retry_until_success $max_attempts \
|
||||
timeout 5h \
|
||||
timeout $timeout \
|
||||
./dotnet-rpm-build.sh
|
||||
|
||||
|
||||
@ -902,32 +918,40 @@ export COMPlus_LTTng=0
|
||||
%changelog
|
||||
* Tue Dec 09 2025 Omair Majid <omajid@redhat.com> - 10.0.101-2
|
||||
- Update to .NET SDK 10.0.101 and Runtime 10.0.1
|
||||
- Resolves: RHEL-130938
|
||||
- Resolves: RHEL-130939
|
||||
|
||||
* Wed Nov 12 2025 Omair Majid <omajid@redhat.com> - 10.0.100-2
|
||||
- Update to .NET SDK 10.0.100 and Runtime 10.0.0
|
||||
- Resolves: RHEL-125748
|
||||
- Resolves: RHEL-125749
|
||||
|
||||
* Fri Oct 17 2025 Omair Majid <omajid@redhat.com> - 10.0.100~rc.2.25502.107-0.10
|
||||
* Wed Oct 15 2025 Omair Majid <omajid@redhat.com> - 10.0.100~rc.2.25502.107-0.12
|
||||
- Update to .NET SDK 10.0.100-rc.2.25502.107 and Runtime 10.0.0-rc.2.25502.107
|
||||
- Resolves: RHEL-121559
|
||||
- Resolves: RHEL-121558
|
||||
|
||||
* Tue Sep 16 2025 Omair Majid <omajid@redhat.com> - 10.0.100~rc.1.25451.107-0.9
|
||||
* Tue Sep 30 2025 Omair Majid <omajid@redhat.com> - 10.0.100~rc.1.25451.107-0.11
|
||||
- Disable bootstrap
|
||||
- Resolves: RHEL-114572
|
||||
- Related: RHEL-114571
|
||||
|
||||
* Sun Sep 14 2025 Omair Majid <omajid@redhat.com> - 10.0.100~rc.1.25451.107-0.8
|
||||
- Update to RC 1
|
||||
- Resolves: RHEL-114572
|
||||
* Sun Sep 14 2025 Omair Majid <omajid@redhat.com> - 10.0.100~rc.1.25451.107-0.10
|
||||
- Update to .NET 10 RC 1
|
||||
- Resolves: RHEL-114571
|
||||
|
||||
* Thu Sep 04 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.6.25358.103-0.7
|
||||
* Tue Sep 09 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.7.25380.108-0.9
|
||||
- Disable bootstrap
|
||||
- Related: RHEL-98678
|
||||
|
||||
* Thu Sep 04 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.7.25380.108-0.8
|
||||
- Drop netstandard-targeting-pack-2.1
|
||||
- Resolves: RHEL-111815
|
||||
- Related: RHEL-98678
|
||||
|
||||
* Thu Aug 07 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.6.25358.103-0.6
|
||||
- Disable bootstrap
|
||||
- Resolves: RHEL-98674
|
||||
* Sat Aug 23 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.7.25380.108-0.7
|
||||
- Update to .NET 10 Preview 7
|
||||
- Related: RHEL-98678
|
||||
|
||||
* Tue Aug 19 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.6.25358.103-0.6
|
||||
- Rebuild to try and get rid of random errors
|
||||
- Related: RHEL-98678
|
||||
|
||||
* Fri Aug 01 2025 Omair Majid <omajid@redhat.com> - 10.0.100~preview.6.25358.103-0.5
|
||||
- Initial commit on c9s
|
||||
- Resolves: RHEL-98674
|
||||
- Initial commit on c10s
|
||||
- Resolves: RHEL-98678
|
||||
|
||||
@ -1,14 +1,11 @@
|
||||
summary: Basic smoke test
|
||||
provision:
|
||||
hardware:
|
||||
disk:
|
||||
- size: ">= 20 GiB"
|
||||
memory: ">= 5120 MiB"
|
||||
disk: 20
|
||||
memory: 5120
|
||||
prepare:
|
||||
how: install
|
||||
package:
|
||||
- aspnetcore-runtime-10.0
|
||||
- babeltrace
|
||||
- bash-completion
|
||||
- bc
|
||||
- binutils
|
||||
|
||||
Loading…
Reference in New Issue
Block a user