Skip to content

Commit 2f44d40

Browse files
[main] Update dependencies from dotnet/arcade
1 parent 02a36d3 commit 2f44d40

File tree

5 files changed

+27
-20
lines changed

5 files changed

+27
-20
lines changed

eng/Version.Details.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<ProductDependencies>
44
</ProductDependencies>
55
<ToolsetDependencies>
6-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.21529.1">
6+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.21555.2">
77
<Uri>https://github.com/dotnet/arcade</Uri>
8-
<Sha>0558f85d950fee2838bf02b9ba1f20d67f00b504</Sha>
8+
<Sha>a7c57abb74deaee6dac921dd68f9c3c58059ebfb</Sha>
99
</Dependency>
1010
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="5.0.0-alpha.1.20473.1">
1111
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>

eng/common/post-build/symbols-validation.ps1

+8-8
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,17 @@ $CountMissingSymbols = {
134134
# Save the output and get diagnostic output
135135
$output = & $dotnetSymbolExe --symbols --modules $WindowsPdbVerificationParam $TargetServerParam $FullPath -o $SymbolsPath --diagnostics | Out-String
136136

137-
if (Test-Path $PdbPath) {
138-
return 'PDB'
137+
if ((Test-Path $PdbPath) -and (Test-path $SymbolPath)) {
138+
return 'Module and PDB for Module'
139139
}
140-
elseif (Test-Path $NGenPdb) {
141-
return 'NGen PDB'
140+
elseif ((Test-Path $NGenPdb) -and (Test-Path $PdbPath) -and (Test-Path $SymbolPath)) {
141+
return 'Dll, PDB and NGen PDB'
142142
}
143-
elseif (Test-Path $SODbg) {
144-
return 'DBG for SO'
143+
elseif ((Test-Path $SODbg) -and (Test-Path $SymbolPath)) {
144+
return 'So and DBG for SO'
145145
}
146-
elseif (Test-Path $DylibDwarf) {
147-
return 'Dwarf for Dylib'
146+
elseif ((Test-Path $DylibDwarf) -and (Test-Path $SymbolPath)) {
147+
return 'Dylib and Dwarf for Dylib'
148148
}
149149
elseif (Test-Path $SymbolPath) {
150150
return 'Module'

eng/common/templates/job/source-build.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ parameters:
3131
# container and pool.
3232
platform: {}
3333

34-
# The default VM host AzDO pool. This should be capable of running Docker containers: almost all
35-
# source-build builds run in Docker, including the default managed platform.
36-
defaultContainerHostPool:
37-
vmImage: ubuntu-20.04
38-
3934
jobs:
4035
- job: ${{ parameters.jobNamePrefix }}_${{ parameters.platform.name }}
4136
displayName: Source-Build (${{ parameters.platform.name }})
@@ -47,7 +42,15 @@ jobs:
4742
container: ${{ parameters.platform.container }}
4843

4944
${{ if eq(parameters.platform.pool, '') }}:
50-
pool: ${{ parameters.defaultContainerHostPool }}
45+
# The default VM host AzDO pool. This should be capable of running Docker containers: almost all
46+
# source-build builds run in Docker, including the default managed platform.
47+
pool:
48+
${{ if eq(variables['System.TeamProject'], 'public') }}:
49+
name: NetCore1ESPool-Public
50+
demands: ImageOverride -equals Build.Ubuntu.1804.Amd64.Open
51+
${{ if eq(variables['System.TeamProject'], 'internal') }}:
52+
name: NetCore1ESPool-Internal
53+
demands: ImageOverride -equals Build.Ubuntu.1804.Amd64
5154
${{ if ne(parameters.platform.pool, '') }}:
5255
pool: ${{ parameters.platform.pool }}
5356

eng/common/templates/job/source-index-stage1.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ parameters:
55
sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci"
66
preSteps: []
77
binlogPath: artifacts/log/Debug/Build.binlog
8-
pool:
9-
vmImage: 'windows-2019'
108
condition: ''
119
dependsOn: ''
1210

@@ -24,7 +22,13 @@ jobs:
2422
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
2523
- group: source-dot-net stage1 variables
2624

27-
pool: ${{ parameters.pool }}
25+
pool:
26+
${{ if eq(variables['System.TeamProject'], 'public') }}:
27+
name: NetCore1ESPool-Public
28+
demands: ImageOverride -equals Build.Server.Amd64.VS2019.Open
29+
${{ if eq(variables['System.TeamProject'], 'internal') }}:
30+
name: NetCore1ESPool-Internal
31+
demands: ImageOverride -equals Build.Server.Amd64.VS2019
2832
steps:
2933
- ${{ each preStep in parameters.preSteps }}:
3034
- ${{ preStep }}

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"dotnet": "6.0.100-rc.1.21430.12"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21529.1"
6+
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21555.2"
77
}
88
}

0 commit comments

Comments
 (0)