Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.azure
diff options
context:
space:
mode:
authorMackinnon Buck <mackinnon.buck@gmail.com>2022-08-31 00:21:17 +0300
committerGitHub <noreply@github.com>2022-08-31 00:21:17 +0300
commitbcf7319eb38de9aa360af163400cc6821762a3f2 (patch)
tree363963d9f037d2baae110a5dcf72d2112c142938 /.azure
parent56597748dc1e59a600658d71cbb75f02410f3101 (diff)
Update SDK to 7.0.100-rc.2.22419.24 (#43028)
- {lots of different SDK versions tried} - Validate DataProtection custom algorithm has a constructor - Additional fixes - Suppress IL2121 - Fix NoWarn overrides - Update LinkabilityChecker.csproj - Update WasmLinkerTest.csproj - Bump SDK version yet again - Hack to stop using `msbuild` server - please open an issue to keep trying to remove this - Disable msbuild server for source-build job Co-authored-by: Steve Sanderson <SteveSandersonMS@users.noreply.github.com> Co-authored-by: Chris Ross <chrross@microsoft.com> Co-authored-by: Tanay Parikh <TanayParikh@users.noreply.github.com> Co-authored-by: James Newton-King <james@newtonking.com> Co-authored-by: Sébastien Ros <sebastienros@gmail.com> Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com> Co-authored-by: Safia Abdalla <safia@microsoft.com>
Diffstat (limited to '.azure')
-rw-r--r--.azure/pipelines/ci.yml8
-rw-r--r--.azure/pipelines/jobs/default-build.yml6
2 files changed, 13 insertions, 1 deletions
diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml
index 40de723df7..93d0adf8e2 100644
--- a/.azure/pipelines/ci.yml
+++ b/.azure/pipelines/ci.yml
@@ -733,7 +733,13 @@ stages:
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-20210714125435-9b5bbc2'
buildScript: './eng/build.sh $(_PublishArgs) --no-build-repo-tasks'
skipPublishValidation: true
- timeoutInMinutes: 120
+ jobProperties:
+ timeoutInMinutes: 120
+ variables:
+ # !temporary! Remove as soon as .NET SDK includes a new-enough `msbuild` to make this hack unnecessary
+ DOTNET_CLI_DO_NOT_USE_MSBUILD_SERVER: true
+ # Log environment variables in binary logs to ease debugging
+ MSBUILDLOGALLENVIRONMENTVARIABLES: true
# Publish to the BAR and perform source indexing. Wait until everything else is done.
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
diff --git a/.azure/pipelines/jobs/default-build.yml b/.azure/pipelines/jobs/default-build.yml
index 2e4a9cd7b4..ba270eb95b 100644
--- a/.azure/pipelines/jobs/default-build.yml
+++ b/.azure/pipelines/jobs/default-build.yml
@@ -220,6 +220,8 @@ jobs:
# Include the variables we always want.
COMPlus_DbgEnableMiniDump: 1
COMPlus_DbgMiniDumpName: "$(System.DefaultWorkingDirectory)/dotnet-%d.%t.core"
+ # !temporary! Remove as soon as .NET SDK includes a new-enough `msbuild` to make this hack unnecessary
+ DOTNET_CLI_DO_NOT_USE_MSBUILD_SERVER: true
# Expand provided `env:` properties, if any.
${{ if step.env }}:
${{ step.env }}
@@ -231,12 +233,16 @@ jobs:
env:
COMPlus_DbgEnableMiniDump: 1
COMPlus_DbgMiniDumpName: "$(System.DefaultWorkingDirectory)/dotnet-%d.%t.core"
+ # !temporary! Remove as soon as .NET SDK includes a new-enough `msbuild` to make this hack unnecessary
+ DOTNET_CLI_DO_NOT_USE_MSBUILD_SERVER: true
- ${{ if ne(parameters.agentOs, 'Windows') }}:
- script: $(BuildDirectory)/build.sh --ci --nobl --configuration $(BuildConfiguration) $(BuildScriptArgs)
displayName: Run build.sh
env:
COMPlus_DbgEnableMiniDump: 1
COMPlus_DbgMiniDumpName: "$(System.DefaultWorkingDirectory)/dotnet-%d.%t.core"
+ # !temporary! Remove as soon as .NET SDK includes a new-enough `msbuild` to make this hack unnecessary
+ DOTNET_CLI_DO_NOT_USE_MSBUILD_SERVER: true
- ${{ parameters.afterBuild }}