Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .vsts-dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
env:
Token: $(dn-bot-dnceng-artifact-feeds-rw)
- task: BatchScript@1
displayName: Build (with -mt in stage2)
displayName: Build (with stage2)
inputs:
filename: 'build.cmd'
arguments: '-ci -test -stage2Argument /mt'
arguments: '-ci -test -stage2'
condition: eq(variables.onlyDocChanged, 0)
# Task to collect code coverage on Windows. Disabled by default due to being unstable and sometimes it stucks forever
# - task: PowerShell@2
Expand Down Expand Up @@ -153,10 +153,10 @@ jobs:
env:
Token: $(dn-bot-dnceng-artifact-feeds-rw)
- task: BatchScript@1
displayName: Build (with -mt in stage2)
displayName: Build (with stage2)
inputs:
filename: 'build.cmd'
arguments: '-msbuildEngine dotnet -ci -test -stage2Argument /mt'
arguments: '-msbuildEngine dotnet -ci -test -stage2'
condition: eq(variables.onlyDocChanged, 0)
env:
MSBUILDUSESERVER: "1"
Expand Down Expand Up @@ -235,8 +235,8 @@ jobs:
- bash: sudo apt-get update
- bash: sudo apt-get install -y libxml2
# Intentionally not running tests
- bash: . 'build.sh' --ci --stage2Argument '/mt' --stage2Argument '/p:BuildAnalyzer=true'
displayName: Build (with -mt in stage2)
- bash: . 'build.sh' --ci --stage2 --stage2Argument '/p:BuildAnalyzer=true'
displayName: Build (with stage2)
condition: eq(variables.onlyDocChanged, 0)
env:
MSBUILDUSESERVER: "1"
Expand Down Expand Up @@ -351,8 +351,8 @@ jobs:
Token: $(dn-bot-dnceng-artifact-feeds-rw)
- bash: sudo apt-get update
- bash: sudo apt-get install -y libxml2
- bash: . 'build.sh' --ci --test --stage2Argument '/mt'
displayName: Build (with -mt in stage2)
- bash: . 'build.sh' --ci --test --stage2
displayName: Build (with stage2)
condition: eq(variables.onlyDocChanged, 0)
env:
MSBUILDUSESERVER: "1"
Expand Down Expand Up @@ -440,8 +440,8 @@ jobs:
arguments: $(Build.SourcesDirectory)/NuGet.config $Token
env:
Token: $(dn-bot-dnceng-artifact-feeds-rw)
- bash: . 'build.sh' --ci --test --stage2Argument '/mt'
displayName: Build (with -mt in stage2)
- bash: . 'build.sh' --ci --test --stage2
displayName: Build (with stage2)
condition: eq(variables.onlyDocChanged, 0)
env:
MSBUILDUSESERVER: "1"
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.rsp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/verbosity:minimal /m /clp:Summary
/verbosity:minimal /m /clp:Summary /mt
Comment thread
ViktorHofer marked this conversation as resolved.
Loading