Update ci.yml #370
Annotations
3 errors, 5 warnings, and 3 notices
Julia 1.5 - ubuntu-latest - x86 - push
Process completed with exit code 1.
|
Documentation:
../../../.julia/packages/Documenter/bFHi4/src/Documenter.jl#L556
Git failed to fetch [email protected]:oashour/NonlinearSchrodinger.jl
This can be caused by a DOCUMENTER_KEY variable that is not correctly set up.
Make sure that the environment variable is properly set up as a Base64-encoded string
of the SSH private key. You may need to re-generate the keys with DocumenterTools.
|
Documentation:
../../../.julia/packages/Documenter/bFHi4/src/Documenter.jl#L664
Failed to push:
exception =
failed process: Process(`git fetch upstream`, ProcessExited(128)) [128]
Stacktrace:
[1] pipeline_error(procs::Base.ProcessChain)
@ Base ./process.jl:565 [inlined]
[2] run(::Cmd; wait::Bool)
@ Base ./process.jl:480
[3] run
@ ./process.jl:477 [inlined]
[4] (::Documenter.var"#git_commands#27"{String, String, SubString{String}, String, Vector{Any}, Bool, String, String})(sshconfig::String)
@ Documenter ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:554
[5] (::Documenter.var"#26#32"{String})()
@ Documenter ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:659
[6] cd(f::Documenter.var"#26#32"{String}, dir::String)
@ Base.Filesystem ./file.jl:112
[7] #25
@ ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:659 [inlined]
[8] withenv(f::Documenter.var"#25#31"{String, String}, keyvals::Pair{String, String})
@ Base ./env.jl:256
[9] (::Documenter.var"#24#30"{String, String, SubString{String}, String})(sshconfig::String, io::IOStream)
@ Documenter ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:658
[10] mktemp(fn::Documenter.var"#24#30"{String, String, SubString{String}, String}, parent::String)
@ Base.Filesystem ./file.jl:738
[11] mktemp(fn::Function)
@ Base.Filesystem ./file.jl:736
[12] git_push(root::String, temp::String, repo::String; branch::String, dirname::String, target::String, sha::SubString{String}, devurl::String, versions::Vector{Any}, forcepush::Bool, deploy_config::Documenter.GitHubActions, subfolder::String, is_preview::Bool)
@ Documenter ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:643
[13] git_push
@ ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:530 [inlined]
[14] #18
@ ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:508 [inlined]
[15] mktempdir(fn::Documenter.var"#18#20"{SubString{String}, String, String, String, String, Vector{Any}, Bool, Documenter.GitHubActions, Bool, String, String, String}, parent::String; prefix::String)
@ Base.Filesystem ./file.jl:766
[16] mktempdir(fn::Function, parent::String) (repeats 2 times)
@ Base.Filesystem ./file.jl:762
[17] (::Documenter.var"#17#19"{String, String, String, Nothing, String, Vector{Any}, Bool, Documenter.GitHubActions, Bool, String, String, String})()
@ Documenter ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:507
[18] cd(f::Documenter.var"#17#19"{String, String, String, Nothing, String, Vector{Any}, Bool, Documenter.GitHubActions, Bool, String, String, String}, dir::String)
@ Base.Filesystem ./file.jl:112
[19] deploydocs(; root::String, target::String, dirname::String, repo::String, branch::String, repo_previews::String, branch_previews::String, deps::Nothing, make::Nothing, devbranch::String, devurl::String, versions::Vector{Any}, forcepush::Bool, deploy_config::Documenter.GitHubActions, push_preview::Bool)
@ Documenter ~/.julia/packages/Documenter/bFHi4/src/Documenter.jl:484
[20] top-level scope
@ ~/work/NonlinearSchrodinger.jl/NonlinearSchrodinger.jl/docs/make.jl:30
[21] include(fname::String)
@ Base.MainInclude ./client.jl:489
[22] top-level scope
@ none:8
[23] eval
@ Core ./boot.jl:385 [inlined]
[24] exec_options(opts::Base.JLOptions)
@ Base ./client.jl:291
[25] _start()
@ Base ./client.jl:552
|
Julia 1.5 - ubuntu-latest - x86 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Julia 1.5 - ubuntu-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v1, codecov/codecov-action@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Documentation:
../../../.julia/packages/Documenter/bFHi4/src/Expanders.jl#L563
failed to run `@example` block in src/man/visualization.md:238-298
```@example
using LightGraphs, MetaGraphs, Plots, GraphRecipes, LaTeXStrings
default(size=(1000,1000))
function gen_rec_graph(N, pal)
function DT_recurse(n, p, g, N, pal)
if !haskey(g[:name], (n, p)) # if there is not already a node with name (n, p)
# add a new vertex and set it's name to (n, p)
# the most recent added vertex always has the index nv(g)
add_vertex!(g)
set_prop!(g, nv(g), :name, (n, p))
set_prop!(g, nv(g), :size, N)
set_prop!(g, nv(g), :col, pal[N])
end
if n != 1
# recurse as usual
DT_recurse(n-1, 1, g, N-1, pal)
DT_recurse(n-1, p+1, g, N-1, pal)
# at this point, the vertices with the names (n, p), (n-1, 1) and (n-1, p+1) already exist
# so we look them up by their name
v1 = g[(n, p), :name]
v2 = g[(n-1, 1), :name]
v3 = g[(n-1, p+1), :name]
# add edges (n, p) -> (n-1, 1) and (n, p) -> (n-1, p+1)
add_edge!(g, v1, v2)
add_edge!(g, v1, v3)
end
return nothing
end
g = MetaDiGraph() # empty graph
set_indexing_prop!(g, :name) # allows one to look up nodes by the attribute :name
DT_recurse(N, 1, g, N, pal)
return g
end
N = 4
pal = palette(:heat, Int(floor(1.5*N)))
g = gen_rec_graph(N, pal)
using Random
Random.seed!(320) # this guarantrees fixed placement of the nodes in the plot, not mandatory
p = graphplot(g, names = [latexstring(get_prop(g, v, :name)) for v in vertices(g)],
arrow=:arrow,
nodeshape=:circle,
curvature_scalar=0.0,
nodeweights=[get_prop(g, v, :size) for v in vertices(g)],
markercolor=[get_prop(g, v, :col) for v in vertices(g)],
fontsize=14,
markersize=0.04,
linewidth=2,
method=:tree,
curves=false)
savefig("recurse_4.svg") #hide
```
c.value =
MethodError: no method matching Graphs.SimpleGraphs.SimpleDiGraph(::MetaGraphs.MetaDiGraph{Int64, Float64})
Closest candidates are:
Graphs.SimpleGraphs.SimpleDiGraph(!Matched::Int64, !Matched::Array{Vector{T}, 1}, !Matched::Array{Vector{T}, 1}) where T
@ Graphs ~/.julia/packages/Graphs/FXxqo/src/SimpleGraphs/simpledigraph.jl:21
Graphs.SimpleGraphs.SimpleDiGraph(!Matched::Type{T}) where T<:Integer
@ Graphs ~/.julia/packages/Graphs/FXxqo/src/SimpleGraphs/simpledigraph.jl:68
Graphs.SimpleGraphs.SimpleDiGraph(!Matched::T, !Matched::Integer; rng, seed) where T<:Integer
@ Graphs ~/.julia/packages/Graphs/FXxqo/src/SimpleGraphs/generators/randgraphs.jl:94
...
|
Documentation:
../../../.julia/packages/Documenter/bFHi4/src/Writers/HTMLWriter.jl#L1845
invalid local image: unresolved path in man/visualization.md
link = "recurse_4.svg"
|
Documentation
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`
|
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`
|
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`
|