Skip to content

Commit

Permalink
Fix the CI (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch authored Oct 3, 2023
1 parent 7e471e8 commit b1aa669
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
version:
- '1.6'
- '1'
- 'nightly'
# - 'nightly'
os:
- ubuntu-latest
arch:
Expand Down
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ bib = CitationBibliography(
sort_bibliography!(bib.entries, :nyt) # name-year-title

makedocs(
bib,
plugins=[bib],
sitename="ProbNumDiffEq.jl",
format=Documenter.HTML(
assets=String["assets/citations.css"],
Expand Down Expand Up @@ -58,6 +58,7 @@ makedocs(
],
"References" => "references.md",
],
warnonly=:missing_docs,
)

# Documenter can also automatically deploy documentation to gh-pages.
Expand Down
6 changes: 3 additions & 3 deletions src/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ PrecompileTools.@compile_workload begin
end

prob_list = [
ODEProblem{true,true}(lorenz, [1.0; 0.0; 0.0], (0.0, 1.0))
ODEProblem{true,false}(lorenz, [1.0; 0.0; 0.0], (0.0, 1.0))
ODEProblem{true,false}(lorenz, [1.0; 0.0; 0.0], (0.0, 1.0), Float64[])
ODEProblem{true,true}(lorenz, [1.0; 0.0; 0.0], (0.0, 1.0)),
ODEProblem{true,false}(lorenz, [1.0; 0.0; 0.0], (0.0, 1.0)),
ODEProblem{true,false}(lorenz, [1.0; 0.0; 0.0], (0.0, 1.0), Float64[]),
]

solver_list = [
Expand Down

0 comments on commit b1aa669

Please sign in to comment.