Skip to content

Commit

Permalink
configure travis for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
endel committed Oct 2, 2016
1 parent 56d4266 commit 442fa6e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
indent_style = tab
indent_size = 2
indent_style = space

[*.cs]
indent_style = tab
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: csharp
solution: FossilDelta.sln
mono:
- latest
- 3.12.0
- 3.10.0
install:
- nuget restore solution-name.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release solution-name.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./MyPoject.Tests/bin/Release/MyProject.Tests.dll
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Delta compression algorithm for C#
===

> This is a port from the original C implementation. See references below.
[![Build Status](https://secure.travis-ci.org/endel/FossilDelta.svg?branch=master)](https://travis-ci.org/endel/FossilDelta)

**WORK IN PROGRESS, NOT WORKING YET**
> This is a port from the original C implementation. See references below.
Fossil achieves efficient storage and low-bandwidth synchronization through the
use of delta-compression. Instead of storing or transmitting the complete
Expand Down

0 comments on commit 442fa6e

Please sign in to comment.