Merge branch 'release/6.0.3xx' into release/6.0.4xx
This commit is contained in:
commit
f3abd918cb
4 changed files with 10 additions and 10 deletions
|
@ -174,7 +174,7 @@
|
|||
or minor release, prebuilts may be needed. When the release is mature, prebuilts are not
|
||||
necessary, and this property is removed from the file.
|
||||
-->
|
||||
<PrivateSourceBuiltArtifactsPackageVersion>6.0.120</PrivateSourceBuiltArtifactsPackageVersion>
|
||||
<PrivateSourceBuiltArtifactsPackageVersion>6.0.121</PrivateSourceBuiltArtifactsPackageVersion>
|
||||
</PropertyGroup>
|
||||
<!-- Workload manifest package versions -->
|
||||
<PropertyGroup>
|
||||
|
|
|
@ -14,7 +14,7 @@ parameters:
|
|||
centOSStream9Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9-20220107135047-4cd394c
|
||||
debian9Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-stretch-20211001171226-047508b
|
||||
debian9Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-9-arm64v8-20220405201138-a251961
|
||||
fedora33Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-33-20210222183538-031e7d2
|
||||
fedora38Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38-20230609193134-47458d2
|
||||
ubuntu1804Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-20210924170306-047508b
|
||||
poolInternalAmd64:
|
||||
name: NetCore1ESPool-Svc-Internal
|
||||
|
@ -62,9 +62,9 @@ jobs:
|
|||
_EnablePoison: false
|
||||
_ExcludeOmniSharpTests: false
|
||||
_RunOnline: false
|
||||
Fedora33-Offline:
|
||||
Fedora38-Offline:
|
||||
_BootstrapPrep: false
|
||||
_Container: ${{ parameters.fedora33Container }}
|
||||
_Container: ${{ parameters.fedora38Container }}
|
||||
_EnablePoison: true
|
||||
_ExcludeOmniSharpTests: false
|
||||
_RunOnline: false
|
||||
|
@ -111,9 +111,9 @@ jobs:
|
|||
excludeSdkContentTests: true
|
||||
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
|
||||
matrix:
|
||||
Fedora33-Offline:
|
||||
_PreviousSourceBuildArtifact: Build_Tarball_x64 Fedora33-Offline_Artifacts
|
||||
_Container: ${{ parameters.fedora33Container }}
|
||||
Fedora38-Offline:
|
||||
_PreviousSourceBuildArtifact: Build_Tarball_x64 Fedora38-Offline_Artifacts
|
||||
_Container: ${{ parameters.fedora38Container }}
|
||||
_EnablePoison: false
|
||||
_ExcludeOmniSharpTests: false
|
||||
_RunOnline: false
|
||||
|
|
|
@ -322,7 +322,7 @@
|
|||
<MakeDir Directories="$(ExternalTarballsDir)" />
|
||||
|
||||
<ItemGroup>
|
||||
<ArtifactUrls Include="$(SourceBuiltArtifactsTarballUrl)$(SourceBuiltArtifactsTarballName).$(PrivateSourceBuiltArtifactsPackageVersion).tar.gz" />
|
||||
<ArtifactUrls Include="$(SourceBuiltArtifactsTarballUrl)$(SourceBuiltArtifactsTarballName).$(PrivateSourceBuiltArtifactsPackageVersion).centos.7-x64.tar.gz" />
|
||||
<ArtifactUrls
|
||||
Include="$(SourceBuiltArtifactsTarballUrl)$(SourceBuiltPrebuiltsTarballName).$(PrivateSourceBuiltPrebuiltsPackageVersion).tar.gz"
|
||||
Condition="'$(PrivateSourceBuiltPrebuiltsPackageVersion)' != ''" />
|
||||
|
|
|
@ -79,13 +79,13 @@ while read -r line; do
|
|||
if [[ $line == *"Private.SourceBuilt.Artifacts"* ]]; then
|
||||
if [ "$downloadArtifacts" == "true" ]; then
|
||||
echo " Downloading source-built artifacts from $line..."
|
||||
(cd $SCRIPT_ROOT/packages/archive/ && curl --retry 5 -O $line)
|
||||
(cd $SCRIPT_ROOT/packages/archive/ && curl --fail --retry 5 -O $line)
|
||||
fi
|
||||
fi
|
||||
if [[ $line == *"Private.SourceBuilt.Prebuilts"* ]]; then
|
||||
if [ "$downloadPrebuilts" == "true" ]; then
|
||||
echo " Downloading source-built prebuilts from $line..."
|
||||
(cd $SCRIPT_ROOT/packages/archive/ && curl --retry 5 -O $line)
|
||||
(cd $SCRIPT_ROOT/packages/archive/ && curl --fail --retry 5 -O $line)
|
||||
fi
|
||||
fi
|
||||
done < $SCRIPT_ROOT/packages/archive/archiveArtifacts.txt
|
||||
|
|
Loading…
Reference in a new issue