varun2784 / weed-fs

Automatically exported from code.google.com/p/weed-fs
0 stars 0 forks source link

Move to github #78

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Github is easier to contribute, more social and have much better possibilities 
to popularize this awesome project.
Please, consider migrating to github or making mirror.

I can help with coveralls/travis integration to make project page more awesome.

Thank you.

Original issue reported on code.google.com by cydev.ru on 14 Jul 2014 at 10:35

GoogleCodeExporter commented 8 years ago
Thanks! I have mirrored an "official" repo in github.

https://github.com/chrislusf/weed-fs

Let me know how to continue on the coveralls/travis integration. I have not 
done it before.

Original comment by chris...@gmail.com on 14 Jul 2014 at 4:55

GoogleCodeExporter commented 8 years ago
First of all you need to create .travis.yml
Example:
https://github.com/ernado/gofbauth/blob/master/.travis.yml

"go" section describes golang versions that will be tested separately

"before_install" section describes steps that should done before install, 
in my example it just exports environment variable for golang

"install" section describes steps of installation. "go get ." installs all deps 
of current projects, and other lines install deps for tests and test coverage.

"script" section represents steps of testing. In my example it performs tests 
with coverage stats collection and then pushes stats to coveralls.
Basic script is just "go test"

Original comment by cydev.ru on 18 Jul 2014 at 10:15

GoogleCodeExporter commented 8 years ago
I made pull request that adds travis integration (without coverage for now)
https://github.com/chrislusf/weed-fs/pull/2

Original comment by sertav.ernado on 21 Jul 2014 at 5:26

GoogleCodeExporter commented 8 years ago

Original comment by chris...@gmail.com on 21 Jul 2014 at 7:06