Skip to content

Commit 4c00aae

Browse files
authored
Merge pull request #918 from JuliaRobotics/feature/prep_v019
Preparation for v0.19
2 parents 685b5f9 + 7a0c32a commit 4c00aae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+535
-5815
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -72,83 +72,6 @@ jobs:
7272
with:
7373
file: lcov.info
7474

75-
test-cfg:
76-
# if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/release**'
77-
name: w/ LGPL ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
78-
runs-on: ${{ matrix.os }}
79-
env:
80-
JULIA_PKG_SERVER: ""
81-
strategy:
82-
fail-fast: false
83-
matrix:
84-
version:
85-
- '1.8'
86-
os:
87-
- ubuntu-latest
88-
arch:
89-
- x64
90-
steps:
91-
- name: Checkout
92-
uses: actions/checkout@v2
93-
94-
- name: Setup Julia
95-
uses: julia-actions/setup-julia@v1
96-
with:
97-
version: ${{ matrix.version }}
98-
arch: ${{ matrix.arch }}
99-
100-
- name: Install neo4j
101-
run: |
102-
sudo add-apt-repository -y ppa:openjdk-r/ppa
103-
sudo apt-get update
104-
wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
105-
echo 'deb https://debian.neo4j.com stable 3.5' | sudo tee /etc/apt/sources.list.d/neo4j.list
106-
sudo apt-get update
107-
apt list -a neo4j
108-
sudo apt-get install neo4j
109-
sudo service neo4j start
110-
sleep 10
111-
curl -v POST http://neo4j:neo4j@localhost:7474/user/neo4j/password -d"password=test"
112-
# sudo neo4j-admin set-initial-password test
113-
curl -I http://localhost:7474/
114-
115-
- name: Cache Artifacts
116-
uses: actions/cache@v1
117-
env:
118-
cache-name: cache-artifacts
119-
with:
120-
path: ~/.julia/artifacts
121-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
122-
restore-keys: |
123-
${{ runner.os }}-test-${{ env.cache-name }}-
124-
${{ runner.os }}-test-
125-
${{ runner.os }}-
126-
127-
- name: Julia Build Pkg
128-
env:
129-
DFG_USE_CGDFG: true
130-
uses: julia-actions/julia-buildpkg@latest
131-
132-
- name: Git Test Credentials
133-
run: |
134-
git config --global user.name Tester
135-
git config --global user.email [email protected]
136-
137-
- name: Run tests
138-
env:
139-
IIF_TEST: false
140-
DO_CGDFG_TESTS: true
141-
DFG_USE_CGDFG: true
142-
uses: julia-actions/julia-runtest@latest
143-
144-
- name: Process Coverage
145-
uses: julia-actions/julia-processcoverage@v1
146-
147-
- name: Code Coverage
148-
uses: codecov/codecov-action@v1
149-
with:
150-
file: lcov.info
151-
15275
docs:
15376
needs: test
15477
name: Documentation

Project.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
1111
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
1212
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
1313
JSON2 = "2535ab7d-5cd8-5a07-80ac-9b1792aadce3"
14-
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
14+
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
1515
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1616
ManifoldsBase = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb"
17-
Neo4j = "d2adbeaf-5838-5367-8a2f-e46d570981db"
1817
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
1918
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
2019
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
@@ -36,9 +35,7 @@ GraphPlot = "0.5.0"
3635
Graphs = "1.4"
3736
JSON = "0.21"
3837
JSON2 = "0.3.1"
39-
LightGraphs = "1.2, 1.3"
4038
ManifoldsBase = "0.11, 0.12, 0.13"
41-
Neo4j = "2"
4239
OrderedCollections = "1.4"
4340
Pkg = "1.4, 1.5"
4441
ProgressMeter = "1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ add DistributedFactorGraphs
3434

3535
# Usage
3636

37-
The in-memory implementation is the default, using LightGraphs.jl.
37+
The in-memory implementation is the default, using Graphs.jl.
3838

3939
It is recommended to use `IncrementalInference` to create factor graphs as they will be solvable.
4040
```julia

attic/DataStoreTests.jl

Lines changed: 0 additions & 81 deletions
This file was deleted.

attic/MetaGraphsDFG/DFGPlots.jl

Lines changed: 0 additions & 37 deletions
This file was deleted.

attic/MetaGraphsDFG/MetaGraphsDFG.jl

Lines changed: 0 additions & 26 deletions
This file was deleted.

attic/MetaGraphsDFG/entities/MetaGraphsDFG.jl

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)