scan for duplicates

This commit is contained in:
Matthias Mailänder
2015-06-07 22:01:38 +02:00
parent a753a114a0
commit 3b03abc4e3
2 changed files with 38 additions and 1 deletions

View File

@@ -38,6 +38,17 @@ after_build:
--codeVersion "$version"
}
before_test:
- ps: |
if ($env:APPVEYOR_SCHEDULED_BUILD -eq "True")
{
choco install resharper-clt -y
dupFinder /output=dupReport.xml /show-text OpenRA.sln
choco install xmlstarlet -y
xml transform dupFinder.xslt dupReport.xml > dupReport.html
choco install pandoc -y
}
test_script:
- nunit-console-x86.exe OpenRA.Test.dll
@@ -63,4 +74,6 @@ artifacts:
- path: OpenRA-$(APPVEYOR_REPO_TAG_NAME).exe
name: Installer
- path: coverity.zip
name: Coverity Build
name: Coverity Build
- path: dupReport.html
name: dupFinder Report