Skip to content

Commit 3df6c19

Browse files
committed
initial commit
1 parent cf12a67 commit 3df6c19

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: julia
2+
os:
3+
- linux
4+
julia:
5+
- 0.6
6+
- nightly
7+
notifications:
8+
email: false
9+
matrix:
10+
allow_failures:
11+
- julia: nightly
12+
script:
13+
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
14+
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DistributedFactorGraphs"); Pkg.test("DistributedFactorGraphs"; coverage=true)'
15+
after_success:
16+
- julia -e 'cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# DistributedFactorGraphs.jl
2+
3+
[![Build Status](https://travis-ci.org/JuliaArchive/DistributedFactorGraphs.jl.svg?branch=master)](https://travis-ci.org/JuliaArchive/DistributedFactorGraphs.jl)
4+
[![Coverage Status](https://img.shields.io/coveralls/JuliaArchive/DistributedFactorGraphs.jl.svg)](https://coveralls.io/r/JuliaArchive/DistributedFactorGraphs.jl?branch=master)
5+
6+
[![DistributedFactorGraphs](http://pkg.julialang.org/badges/DistributedFactorGraphs_0.6.svg)](http://pkg.julialang.org/?pkg=DistributedFactorGraphs&ver=0.6)
7+
[![DistributedFactorGraphs](http://pkg.julialang.org/badges/DistributedFactorGraphs_0.7.svg)](http://pkg.julialang.org/?pkg=DistributedFactorGraphs&ver=0.7)
8+
9+
**Note** this package is still under initial development, and will adopt parts of the functionality currently contained in [IncrementalInference.jl](JuliaRobotics/IncrementalInference.jl).
10+
11+
# Install
12+
13+
```julia
14+
Pkg.clone("https://github.com/JuliaRobotics/DistributedFactorGraphs.jl.git")
15+
```

0 commit comments

Comments
 (0)