Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
1a0a773
Update CentOS version
richlander Jul 12, 2024
65db197
Merge branch 'release/8.0.1xx' into 8.0.1xx--centos-stream
MichaelSimons Aug 14, 2024
5f81410
Merge branch 'release/8.0.1xx' into 8.0.1xx--centos-stream
nagilson Oct 4, 2024
4b46c44
Merge branch 'release/8.0.1xx' into 8.0.1xx--centos-stream
nagilson Feb 12, 2025
f1ab1e8
Merging internal commits for release/8.0.1xx (#20495)
vseanreesermsft Jul 10, 2025
8d4e60c
Merge branch 'release/8.0.3xx' of https://github.com/dotnet/installer…
Jul 11, 2025
2dbb066
[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx' (#20499)
SimonZhao888 Jul 11, 2025
83aa770
Update dependencies from https://github.com/dotnet/arcade build 20250…
dotnet-maestro[bot] Jul 17, 2025
6c62442
Update dependencies from https://github.com/dotnet/arcade build 20250…
dotnet-maestro[bot] Jul 17, 2025
ec226ee
[release/8.0.3xx] Update dependencies from dotnet/arcade (#20503)
SimonZhao888 Jul 17, 2025
82bb291
[release/8.0.1xx] Update dependencies from dotnet/arcade (#20502)
SimonZhao888 Jul 17, 2025
74a9457
Hard-code os name in centos-9 build leg to centos.8 (to match the run…
jkoritzinsky Jul 18, 2025
e4fe637
Use the centos8 runtime rid as runtime doesn't float it's rid
marcpopMSFT Jul 18, 2025
ff62a72
Revert passing centos.8 as the OS name as I think that's overwriting …
marcpopMSFT Jul 21, 2025
9d31f87
Surpress test on linux leg
marcpopMSFT Jul 21, 2025
1cf3bce
Update CentOS version -- release/8.0.1xx (#19999)
nagilson Jul 22, 2025
058891a
Merge branch 'release/8.0.3xx' of https://github.com/dotnet/installer…
Jul 22, 2025
c2d831a
[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx' (#20510)
SimonZhao888 Jul 22, 2025
e144961
Merge branch 'release/8.0.4xx' of https://github.com/dotnet/installer…
Jul 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,13 @@ extends:
- template: eng/build.yml@self
parameters:
agentOs: Linux
jobName: Build_CentOS_8_Stream_Debug_x64
container: centosStream8
jobName: Build_CentOS_Stream_9_Debug_x64
container: centosStream9
buildConfiguration: Debug
buildArchitecture: x64
linuxPortable: false
runTests: true
additionalBuildParameters: '/p:OSName=centos.8'
- template: eng/build.yml@self
parameters:
agentOs: Linux
Expand Down
4 changes: 2 additions & 2 deletions .vsts-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ stages:
- template: eng/build-pr.yml
parameters:
agentOs: Linux
jobName: Build_CentOS_8_Stream_Debug_x64
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8'
jobName: Build_CentOS_Stream_9_Debug_x64
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9'
buildConfiguration: Debug
buildArchitecture: x64
linuxPortable: false
Expand Down
4 changes: 2 additions & 2 deletions src/SourceBuild/content/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ You can also build the repository using a Docker image which has the required pr
The example below creates a Docker volume named `vmr` and clones and builds the VMR there.

```sh
docker run --rm -it -v vmr:/vmr -w /vmr mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8
docker run --rm -it -v vmr:/vmr -w /vmr mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9
git clone https://github.com/dotnet/dotnet .
./prep.sh && ./build.sh --online
mkdir -p $HOME/.dotnet
tar -zxf artifacts/x64/Release/dotnet-sdk-8.0.100-centos.8-x64.tar.gz -C $HOME/.dotnet
tar -zxf artifacts/x64/Release/dotnet-sdk-8.0.100-centos.9-x64.tar.gz -C $HOME/.dotnet
ln -s $HOME/.dotnet/dotnet /usr/bin/dotnet
```

Expand Down
2 changes: 2 additions & 0 deletions src/redist/targets/GenerateLayout.targets
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
<SharedFrameworkInstallerFileRid Condition=" '$(IsDebianBaseDistro)' == 'true' OR '$(IsRPMBasedDistro)' == 'true' ">$(InstallerTargetArchitecture)</SharedFrameworkInstallerFileRid>

<!-- Use the "x64" Rid when downloading Linux runtime dependencies Debian package. -->
<!-- Use centos 8 rid as runtime doesn't float based on the version -->
<RuntimeDepsInstallerFileRid>$(CoreSetupRid)</RuntimeDepsInstallerFileRid>
<RuntimeDepsInstallerFileRid Condition=" '$(CoreSetupRid)' == 'centos.9-x64' ">centos.8-x64</RuntimeDepsInstallerFileRid>
<RuntimeDepsInstallerFileRid Condition=" '$(IsDebianBaseDistro)' == 'true' ">$(Architecture)</RuntimeDepsInstallerFileRid>
<RuntimeDepsInstallerFileRid Condition=" '$(IsRPMBasedDistro)' == 'true' And '$(UsePortableLinuxSharedFramework)' != 'true' ">$(OSName)-$(InstallerTargetArchitecture)</RuntimeDepsInstallerFileRid>
<RuntimeDepsInstallerFileRid Condition=" '$(CoreSetupRid)' == 'rhel.7-x64' And '$(Architecture)' == 'Arm64' And '$(UsePortableLinuxSharedFramework)' == 'true' ">rhel.7-aarch64</RuntimeDepsInstallerFileRid>
Expand Down