diff options
| author | chrislusf <chris.lu@gmail.com> | 2014-07-20 23:07:25 -0700 |
|---|---|---|
| committer | chrislusf <chris.lu@gmail.com> | 2014-07-20 23:07:25 -0700 |
| commit | 8e7f08d04daa6c80a1790e8d86bad149e9fb14b6 (patch) | |
| tree | 79fa17f9be71a3dcd1a36439cac2a47ec1fd9d81 | |
| parent | 5615604253504b106b969b9960ff000390cd1694 (diff) | |
| parent | 34ccb4f6c99cb73f87c28e25590466845e8cfa2e (diff) | |
| download | seaweedfs-8e7f08d04daa6c80a1790e8d86bad149e9fb14b6.tar.xz seaweedfs-8e7f08d04daa6c80a1790e8d86bad149e9fb14b6.zip | |
Merge pull request #2 from ernado/master
Travis integration and Dockerfile
| -rw-r--r-- | .travis.yml | 15 | ||||
| -rw-r--r-- | Dockerfile | 6 | ||||
| -rw-r--r-- | README.md | 2 |
3 files changed, 23 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..a6f8b8815 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: go +go: + - 1.2 + - 1.3 + - release + - tip + +before_install: + - export PATH=/home/travis/gopath/bin:$PATH + +install: + - go get ./go/... + +script: + - go test ./go/... diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..1243727a2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM cydev/go +RUN go get code.google.com/p/weed-fs/go/weed +EXPOSE 8080 +EXPOSE 9333 +VOLUME /data +ENTRYPOINT ["weed"] @@ -1,6 +1,8 @@ weed-fs ======= +[](https://travis-ci.org/chrislusf/weed-fs) + An official mirrow of code.google.com/p/weed-fs . Moving to github.com to make cooperations easier. This repo and the google code repo will be kept synchronized. |
