File tree 7 files changed +10
-19
lines changed
7 files changed +10
-19
lines changed Original file line number Diff line number Diff line change 19
19
</Dependency >
20
20
</ProductDependencies >
21
21
<ToolsetDependencies >
22
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25126.4 " >
22
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25157.1 " >
23
23
<Uri >https://github.com/dotnet/arcade</Uri >
24
- <Sha >6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d </Sha >
24
+ <Sha >1ec6078c26e4a60b77d8fe64881491cd28335a08 </Sha >
25
25
</Dependency >
26
- <Dependency Name =" Microsoft.DotNet.XliffTasks" Version =" 10.0.0-beta.25126.4 " >
26
+ <Dependency Name =" Microsoft.DotNet.XliffTasks" Version =" 10.0.0-beta.25157.1 " >
27
27
<Uri >https://github.com/dotnet/arcade</Uri >
28
- <Sha >6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d </Sha >
28
+ <Sha >1ec6078c26e4a60b77d8fe64881491cd28335a08 </Sha >
29
29
</Dependency >
30
30
<!-- Intermediate is necessary for source build. -->
31
- <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.25126.4 " >
31
+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.25157.1 " >
32
32
<Uri >https://github.com/dotnet/arcade</Uri >
33
- <Sha >6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d </Sha >
33
+ <Sha >1ec6078c26e4a60b77d8fe64881491cd28335a08 </Sha >
34
34
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
35
35
</Dependency >
36
36
</ToolsetDependencies >
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ parameters:
23
23
enablePublishBuildArtifacts : false
24
24
enablePublishBuildAssets : false
25
25
enablePublishTestResults : false
26
- enablePublishUsingPipelines : false
27
26
enableBuildRetry : false
28
27
mergeTestResults : false
29
28
testRunTitle : ' '
Original file line number Diff line number Diff line change @@ -20,9 +20,6 @@ parameters:
20
20
# if 'true', the build won't run any of the internal only steps, even if it is running in non-public projects.
21
21
runAsPublic : false
22
22
23
- # Optional: whether the build's artifacts will be published using release pipelines or direct feed publishing
24
- publishUsingPipelines : false
25
-
26
23
# Optional: whether the build's artifacts will be published using release pipelines or direct feed publishing
27
24
publishAssetsImmediately : false
28
25
96
93
arguments : -task PublishBuildAssets -restore -msbuildEngine dotnet
97
94
/p:ManifestsPath='$(Build.StagingDirectory)/AssetManifests'
98
95
/p:MaestroApiEndpoint=https://maestro.dot.net
99
- /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }}
100
96
/p:OfficialBuildId=$(Build.BuildNumber)
101
97
condition : ${{ parameters.condition }}
102
98
continueOnError : ${{ parameters.continueOnError }}
Original file line number Diff line number Diff line change 15
15
enablePublishBuildArtifacts : false
16
16
enablePublishTestResults : false
17
17
enablePublishBuildAssets : false
18
- enablePublishUsingPipelines : false
19
18
enableTelemetry : true
20
19
21
20
variables :
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ parameters:
5
5
# Optional: Include PublishBuildArtifacts task
6
6
enablePublishBuildArtifacts : false
7
7
8
- # Optional: Enable publishing using release pipelines
9
- enablePublishUsingPipelines : false
10
-
11
8
# Optional: Enable running the source-build jobs to build repo from source
12
9
enableSourceBuild : false
13
10
@@ -112,7 +109,6 @@ jobs:
112
109
- Source_Build_Complete
113
110
114
111
runAsPublic : ${{ parameters.runAsPublic }}
115
- publishUsingPipelines : ${{ parameters.enablePublishUsingPipelines }}
116
112
publishAssetsImmediately : ${{ parameters.publishAssetsImmediately }}
117
113
enablePublishBuildArtifacts : ${{ parameters.enablePublishBuildArtifacts }}
118
114
artifactsPublishingAdditionalParameters : ${{ parameters.artifactsPublishingAdditionalParameters }}
Original file line number Diff line number Diff line change @@ -27,8 +27,9 @@ case "$os" in
27
27
libssl-dev libkrb5-dev pigz cpio
28
28
29
29
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
30
- elif [ " $ID " = " fedora" ] || [ " $ID " = " rhel" ]; then
31
- dnf install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio
30
+ elif [ " $ID " = " fedora" ] || [ " $ID " = " rhel" ] || [ " $ID " = " azurelinux" ]; then
31
+ pkg_mgr=" $( command -v tdnf 2> /dev/null || command -v dnf) "
32
+ $pkg_mgr install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio
32
33
elif [ " $ID " = " alpine" ]; then
33
34
apk add build-base cmake bash curl clang llvm-dev lld lldb krb5-dev lttng-ust-dev icu-dev openssl-dev pigz cpio
34
35
else
Original file line number Diff line number Diff line change 3
3
"dotnet" : " 10.0.100-preview.3.25125.5"
4
4
},
5
5
"msbuild-sdks" : {
6
- "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25126.4 " ,
6
+ "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25157.1 " ,
7
7
"Microsoft.Build.NoTargets" : " 3.7.0"
8
8
}
9
9
}
You can’t perform that action at this time.
0 commit comments