-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Microsoft/vstest into Tar…
…getingDifferentFrameworks
- Loading branch information
Showing
45 changed files
with
504 additions
and
175 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Pipeline YAML for PR | ||
|
||
jobs: | ||
- job: Windows | ||
pool: | ||
vmImage: 'vs2017-win2016' | ||
variables: | ||
buildConfiguration: 'Release' | ||
steps: | ||
- task: BatchScript@1 | ||
displayName: 'Run script build.cmd' | ||
inputs: | ||
filename: build.cmd | ||
arguments: '-verbose -configuration $(buildConfiguration)' | ||
modifyEnvironment: false | ||
failOnStandardError: true | ||
|
||
- task: CmdLine@1 | ||
displayName: 'Delete stale pdb files' | ||
inputs: | ||
filename: del | ||
arguments: '/S /F *.pdb' | ||
workingFolder: '$(SystemRoot)' | ||
continueOnError: true | ||
condition: always() | ||
|
||
- task: BatchScript@1 | ||
displayName: 'Run Unit Tests' | ||
inputs: | ||
filename: test.cmd | ||
arguments: '-verbose -configuration $(buildConfiguration)' | ||
modifyEnvironment: false | ||
failOnStandardError: true | ||
|
||
- task: BatchScript@1 | ||
displayName: 'Run Acceptance Tests' | ||
inputs: | ||
filename: test.cmd | ||
arguments: '-verbose -configuration $(buildConfiguration) -p AcceptanceTests -f net451' | ||
modifyEnvironment: false | ||
failOnStandardError: true | ||
|
||
- task: BatchScript@1 | ||
displayName: 'Run Platform Tests' | ||
inputs: | ||
filename: test.cmd | ||
arguments: '-verbose -configuration $(buildConfiguration) -p platformtests' | ||
modifyEnvironment: false | ||
failOnStandardError: true | ||
|
||
- task: BatchScript@1 | ||
displayName: 'Run Smoke Tests' | ||
inputs: | ||
filename: test.cmd | ||
arguments: '-verbose -configuration $(buildConfiguration) -p smoke' | ||
modifyEnvironment: false | ||
failOnStandardError: true | ||
|
||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results **\*.trx' | ||
inputs: | ||
testResultsFormat: VSTest | ||
testResultsFiles: '**\*.trx' | ||
condition: succeededOrFailed() | ||
|
||
- job: Linux | ||
pool: | ||
vmImage: 'ubuntu-16.04' | ||
variables: | ||
buildConfiguration: 'Release' | ||
steps: | ||
- script: ./build.sh -c $(buildConfiguration) | ||
displayName: './build.sh -c $(buildConfiguration)' | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/Microsoft.TestPlatform.Build/Resources/Resources.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.