File tree Expand file tree Collapse file tree 3 files changed +22
-39
lines changed Expand file tree Collapse file tree 3 files changed +22
-39
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,30 @@ julia:
18
18
- 1.3
19
19
- nightly
20
20
21
+ env :
22
+ - IIF_TEST=false
23
+
24
+ jobs :
25
+ include :
26
+ - julia : 1.2
27
+ env : IIF_TEST=true
28
+ - stage : " Documentation"
29
+ julia : 1.0
30
+ os : linux
31
+ script :
32
+ - julia -e 'import Pkg; Pkg.add("Documenter"); Pkg.add("Neo4j"); Pkg.add("GraphPlot")'
33
+ - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
34
+ Pkg.instantiate()'
35
+ - julia --project=docs/ docs/make.jl
36
+ after_success : skip
37
+
21
38
notifications :
22
39
email : false
23
40
24
41
matrix :
25
42
allow_failures :
26
- - julia : nightly
43
+ - julia : nightly
44
+ - env : IIF_TEST=true
27
45
28
46
# Set the password for Neo4j to neo4j:test
29
47
before_script :
@@ -32,22 +50,3 @@ before_script:
32
50
33
51
after_success :
34
52
- julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder()); Coveralls.submit(process_folder())'
35
-
36
- jobs :
37
- include :
38
- - stage : " Documentation"
39
- julia : 1.0
40
- os : linux
41
- script :
42
- - julia -e 'import Pkg; Pkg.add("Documenter"); Pkg.add("DataFrames")'
43
- - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
44
- Pkg.instantiate()'
45
- - julia --project=docs/ docs/make.jl
46
- after_success : skip
47
-
48
- - stage : " IIF Driver Tests"
49
- julia : 1.2
50
- os : linux
51
- script :
52
- - julia -e 'import Pkg; Pkg.add("IncrementalInference"); Pkg.test("DistributedFactorGraphs")'
53
- after_success : skip
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 43
43
end
44
44
45
45
46
- if haskey (Pkg. installed (), " IncrementalInference" )
46
+ if get (ENV , " IIF_TEST" , " " ) == " true"
47
+
48
+ Pkg. add (" IncrementalInference" )
47
49
@info " ------------------------------------------------------------------------"
48
50
@info " These tests are using IncrementalInference to do additional driver tests"
49
51
@info " ------------------------------------------------------------------------"
You can’t perform that action at this time.
0 commit comments