Delete .travis.yml

pull/22/head
William Bishop 2018-03-03 18:52:52 -08:00 committed by GitHub
parent 7ae01b4f64
commit 34cda1ea29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
language: csharp
mono: 4.2.2
solution: Src/JsonDiffPatchDotNet.sln
install:
- nuget restore Src/JsonDiffPatchDotNet.sln
- nuget install NUnit.Runners -Version 3.0.1 -OutputDirectory testrunner
- nuget install coveralls.net -Version 0.6.0 -OutputDirectory coveralls
- sudo apt-get install gtk-sharp2
- curl -sS https://api.nuget.org/packages/mono.cecil.0.9.6.1.nupkg > /tmp/mono.cecil.0.9.6.1.nupkg.zip
- unzip /tmp/mono.cecil.0.9.6.1.nupkg.zip -d /tmp/cecil
- cp /tmp/cecil/lib/net40/Mono.Cecil.dll .
- cp /tmp/cecil/lib/net40/Mono.Cecil.dll /tmp/cecil/
- git clone --depth=50 git://github.com/csMACnz/monocov.git ../../wbish/monocov
- cd ../../wbish/monocov
- cp /tmp/cecil/Mono.Cecil.dll .
- ./configure
- make
- sudo make install
- cd ../../wbish/jsondiffpatch.net
script:
- xbuild /p:Configuration=Release Src/JsonDiffPatchDotNet.sln
- export LD_LIBRARY_PATH=/usr/local/lib
- mono --debug --profile=monocov:outfile=monocovCoverage.cov,+[JsonDiffPatchDotNet] ./testrunner/NUnit.Console.3.0.1/tools/nunit3-console.exe --process=Single ./Src/JsonDiffPatchDotNet.UnitTests/bin/Release/JsonDiffPatchDotNet.UnitTests.dll
- monocov --export-xml=monocovCoverage monocovCoverage.cov
- REPO_COMMIT_AUTHOR=$(git show -s --pretty=format:"%cn")
- REPO_COMMIT_AUTHOR_EMAIL=$(git show -s --pretty=format:"%ce")
- REPO_COMMIT_MESSAGE=$(git show -s --pretty=format:"%s")
- mono ./coveralls/coveralls.net.0.6.0/tools/csmacnz.Coveralls.exe --monocov -i ./monocovCoverage --repoToken p5diEq5dqlAGMtFGth2dAWkm4SucjUpEU --commitId $TRAVIS_COMMIT --commitBranch $TRAVIS_BRANCH --commitAuthor "$REPO_COMMIT_AUTHOR" --commitEmail "$REPO_COMMIT_AUTHOR_EMAIL" --commitMessage "$REPO_COMMIT_MESSAGE" --jobId $TRAVIS_JOB_ID --serviceName travis-ci --useRelativePaths