add ceph backing store plugin

This commit is contained in:
Le Zhang
2018-02-16 14:48:55 +08:00
parent b4b2b735bc
commit a969203cba
25 changed files with 4498 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
dist: trusty
sudo: required
language: go
branches:
except:
- gh-pages
matrix:
include:
- env: CEPH_RELEASE=jewel
- env: CEPH_RELEASE=kraken
before_install:
- sudo apt-get update
- ci/before_install.sh
- bash ci/micro-osd.sh /tmp/micro-ceph
- export CEPH_CONF=/tmp/micro-ceph/ceph.conf
- ceph status
script:
- go get -t -v ./...
- go list ./...
- go test -v $(go list ./... | grep -v cephfs)
- go fmt ./...