File tree 8 files changed +12
-21
lines changed
8 files changed +12
-21
lines changed Original file line number Diff line number Diff line change 67
67
</Dependency >
68
68
</ProductDependencies >
69
69
<ToolsetDependencies >
70
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25126.4 " >
70
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25157.1 " >
71
71
<Uri >https://github.com/dotnet/arcade</Uri >
72
- <Sha >6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d </Sha >
72
+ <Sha >1ec6078c26e4a60b77d8fe64881491cd28335a08 </Sha >
73
73
</Dependency >
74
- <Dependency Name =" Microsoft.DotNet.Build.Tasks.Templating" Version =" 10.0.0-beta.25126.4 " >
74
+ <Dependency Name =" Microsoft.DotNet.Build.Tasks.Templating" Version =" 10.0.0-beta.25157.1 " >
75
75
<Uri >https://github.com/dotnet/arcade</Uri >
76
- <Sha >6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d </Sha >
76
+ <Sha >1ec6078c26e4a60b77d8fe64881491cd28335a08 </Sha >
77
77
</Dependency >
78
- <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 10.0.0-beta.25126.4 " >
78
+ <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 10.0.0-beta.25157.1 " >
79
79
<Uri >https://github.com/dotnet/arcade</Uri >
80
- <Sha >6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d </Sha >
80
+ <Sha >1ec6078c26e4a60b77d8fe64881491cd28335a08 </Sha >
81
81
</Dependency >
82
82
</ToolsetDependencies >
83
83
</Dependencies >
Original file line number Diff line number Diff line change 33
33
<SystemRuntimeCachingVersion >10.0.0-preview.3.25152.4</SystemRuntimeCachingVersion >
34
34
</PropertyGroup >
35
35
<PropertyGroup Label =" Dependencies from dotnet/arcade" >
36
- <MicrosoftDotNetBuildTasksTemplatingVersion >10.0.0-beta.25126.4 </MicrosoftDotNetBuildTasksTemplatingVersion >
36
+ <MicrosoftDotNetBuildTasksTemplatingVersion >10.0.0-beta.25157.1 </MicrosoftDotNetBuildTasksTemplatingVersion >
37
37
</PropertyGroup >
38
38
<PropertyGroup Label =" Other dependencies" >
39
39
<MicrosoftBuildFrameworkVersion >17.8.3</MicrosoftBuildFrameworkVersion >
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 13
13
}
14
14
},
15
15
"msbuild-sdks" : {
16
- "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25126.4 " ,
17
- "Microsoft.DotNet.Helix.Sdk" : " 10.0.0-beta.25126.4 "
16
+ "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25157.1 " ,
17
+ "Microsoft.DotNet.Helix.Sdk" : " 10.0.0-beta.25157.1 "
18
18
}
19
19
}
You can’t perform that action at this time.
0 commit comments