Created
September 18, 2021 02:05
-
-
Save lydonchandra/e11cfe22cb852e3f72b18fd7b9b4f47d to your computer and use it in GitHub Desktop.
download Tests DLL and run dotnet test on it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- task: DownloadPipelineArtifact@2 | |
inputs: | |
source: 'specific' | |
project: 'projectName1' | |
pipeline: 5432 | |
path: './tests' # destinationPath | |
runVersion: 'specific' | |
# use specific runId to troubleshoot | |
runId: 1433 | |
- task: PowerShell@2 | |
displayName: 'List files, debugging purpose' | |
inputs: | |
targetType: 'inline' | |
script: "ls -R ." | |
- task: DotNetCoreCLI@2 | |
inputs: | |
command: 'test' | |
arguments: './tests/Tests.dll' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment