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
26 changes: 12 additions & 14 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ stages:
/p:Test=false
name: Build
displayName: Build
continueOnError: true

# -ci is allowing to import some environment variables and some required configurations
- script: Test.cmd
Expand Down Expand Up @@ -197,7 +196,6 @@ stages:
--ci
name: Build
displayName: Build
continueOnError: true

# Download the built packages into local package source, as if we built them on this machine.
- task: DownloadPipelineArtifact@2
Expand Down Expand Up @@ -259,19 +257,19 @@ stages:
- task: NuGetAuthenticate@0
displayName: 'NuGet Authenticate to dotnet-tools and test-tools feeds'

# - task: NuGetCommand@2
# displayName: 'Publish NuGet packages to dotnet-tools feed'
# inputs:
# command: push
# packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg'
# publishVstsFeed: 'public/dotnet-tools'
- task: NuGetCommand@2
displayName: 'Publish NuGet packages to dotnet-tools feed'
inputs:
command: push
packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg'
publishVstsFeed: 'public/dotnet-tools'

# - task: NuGetCommand@2
# displayName: 'Publish NuGet packages to test-tools feed'
# inputs:
# command: push
# packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg'
# publishVstsFeed: 'public/test-tools'
- task: NuGetCommand@2
displayName: 'Publish NuGet packages to test-tools feed'
inputs:
command: push
packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg'
publishVstsFeed: 'public/test-tools'

# Publishes setup VSIXes to a drop.
# Note: The insertion tool looks for the display name of this task in the logs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ public void GetNavigationDataShouldReturnNullForNotExistMethodNameOrNotExistType
}

[TestMethod]
[Ignore] // TODO: This test tests against a time threshold, which makes it fail on server sometimes.
public void DiaSessionPerfTest()
{
var currentTargetFrameWork = GetAndSetTargetFrameWork(_testEnvironment);
Expand Down