Skip to content

Commit

Permalink
configure circleci; add build badge
Browse files Browse the repository at this point in the history
  • Loading branch information
pymonger committed May 10, 2019
1 parent 94be5e6 commit 68d3a68
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
31 changes: 31 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
version: 2.1
jobs:
test:
docker:
- image: hysds/pge-base:latest
steps:
- checkout
- run:
name: Test
command: |
source $HOME/verdi/bin/activate
python setup.py test
workflows:
version: 2
test:
jobs:
- test
weekly:
triggers:
- schedule:
cron: "0 7 * * 0"
filters:
branches:
only:
- develop
jobs:
- test:
filters:
branches:
only: develop
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
Object-Store Abstraction ? Architecture (Osaka)
===============================================
# Object-Store Abstraction ? Architecture (Osaka)

Osaka is an object storage abstraction system allowing the user to push generic file object to various backend storage system. These different backends are selected based on the scheme element of the URI for the file. Currently, Osaka must have one endpoint that exists on the local file system.
[![CircleCI](https://circleci.com/gh/hysds/osaka.svg?style=svg)](https://circleci.com/gh/hysds/osaka)

Osaka is an object storage abstraction system allowing the user to push generic
file object to various backend storage system. These different backends are
selected based on the scheme element of the URI for the file. Currently, Osaka
must have one endpoint that exists on the local file system.

| Schemes | Push Implemented | Pull Implemented | Tested | Notes: |
| ------- | ---------------- | ---------------- |--------|---------------------------------|
Expand Down

0 comments on commit 68d3a68

Please sign in to comment.