File tree Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 8
8
9
9
julia :
10
10
- 1.0
11
+ - 1.1
11
12
- nightly
12
13
14
+ env :
15
+ - JULIA_PROJECT="@."
16
+
13
17
notifications :
14
18
email : false
15
19
16
20
after_success :
17
- - julia -e 'using Pkg; cd(Pkg.dir("SQLite")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
18
- - julia -e 'using Pkg; Pkg.add("Documenter")'
19
- - julia -e 'using Pkg; cd(Pkg.dir("SQLite")); include(joinpath("docs", "make.jl"))'
21
+ - julia -e 'ENV["TRAVIS_JULIA_VERSION"] != "1.1" && ENV["TRAVIS_OS_NAME"] != "linux" && exit(); using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
22
+
23
+ jobs :
24
+ include :
25
+ - stage : " Documentation"
26
+ julia : 1.1
27
+ os : linux
28
+ script :
29
+ - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build("SQLite")'
30
+ - julia --project=docs/ docs/make.jl
31
+ after_success : skip
Original file line number Diff line number Diff line change
1
+ [deps ]
2
+ Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
+ SQLite = " 0aa819cd-b072-5ff4-a722-6bc24af294d9"
4
+
5
+ [compat ]
6
+ Documenter = " ~0.22"
Original file line number Diff line number Diff line change @@ -2,16 +2,11 @@ using Documenter, SQLite
2
2
3
3
makedocs (
4
4
modules = [SQLite],
5
- format = :html ,
6
5
sitename = " SQLite.jl" ,
7
6
pages = [" Home" => " index.md" ]
8
7
)
9
8
10
9
deploydocs (
11
10
repo = " github.com/JuliaDB/SQLite.jl.git" ,
12
11
target = " build" ,
13
- deps = nothing ,
14
- make = nothing ,
15
- julia = " 1.0" ,
16
- osname = " linux"
17
12
)
You can’t perform that action at this time.
0 commit comments