-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move linux build to AppVeyor (#3574)
* Move linux build to AppVeyor, no longer use Travis, update Readme to reflect move away from Travis and MyGet * relax SDK check, falling behind is handled by dotnet CLI properly already * move to dotnet test (xunit is removed in later versions) * explicit test reporter * coverlet does not work yet but hopeful coverlet-coverage/coverlet#329 fixes it in the future * include integration tests on azure pipelines * job names are not allowed spaces * disable integration tests for now against master * Update readme.md Co-Authored-By: Mpdreamz <Mpdreamz@gmail.com> (cherry picked from commit 67d9b69)
- Loading branch information
Showing
9 changed files
with
90 additions
and
70 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
jobs: | ||
- job: LinuxUnitTests | ||
pool: | ||
vmImage: 'ubuntu-16.04' | ||
steps: | ||
- script: ./build.sh test-one skipdocs | ||
displayName: 'build and unit test' | ||
- task: PublishTestResults@2 | ||
inputs: | ||
testRunner: VSTest | ||
testResultsFiles: 'src/Tests/Tests/**/*.trx' | ||
testRunTitle: Linux Unit Tests | ||
|
||
- job: WindowsCanaryTests | ||
pool: | ||
vmImage: 'vs2017-win2016' | ||
steps: | ||
- script: build.bat canary skipdocs | ||
displayName: 'build and unit test' | ||
- task: PublishTestResults@2 | ||
inputs: | ||
testRunner: VSTest | ||
testResultsFiles: 'src/Tests/Tests/**/*.trx' | ||
testRunTitle: Windows Unit Tests | ||
|
||
# Enable this when backporting to 7.x 6.x and 5.x, master not in integratable state until 7.x stabalizes and merged to master again | ||
#- job: WindowsIntegrationTests | ||
# dependsOn: WindowsCanaryTests | ||
# pool: | ||
# vmImage: 'vs2017-win2016' | ||
# strategy: | ||
# maxParallel: 5 | ||
# matrix: | ||
# es653: | ||
# esVersion: '6.5.3' | ||
# es632: | ||
# esVersion: '6.3.2' | ||
# steps: | ||
# - script: 'build.bat integrate $(esVersion) skipdocs' | ||
# displayName: '$(esVersion) integration tests' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "2.1.300" | ||
"version": "2.2.103" | ||
}, | ||
"version": "5.6.6" | ||
} |
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