Skip to content

doc building

doc building #70

Triggered via push March 11, 2024 22:04
Status Failure
Total duration 3m 47s
Artifacts

CI.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

10 errors, 20 warnings, and 1 notice
Documentation: src/FunctionTabulations.jl#L296
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:296-311 ```jldoctest julia> func_2d(x, y) = sin(x) * sin(y) julia> itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0, xmax = 1.0, ymin = 0.0, ymax = 2.0, npoints_x = 100, npoints_y = 100, ) julia> isapprox(itp_2d_1(1.0, 1.3), func_2d(1.0, 1.3), rtol = 1e-3) true ``` Subexpression: func_2d(x, y) = sin(x) * sin(y) Evaluated output: func_2d (generic function with 1 method) Expected output: diff = Warning: Diff output requires color. func_2d (generic function with 1 method)
Documentation: src/FunctionTabulations.jl#L296
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:296-311 ```jldoctest julia> func_2d(x, y) = sin(x) * sin(y) julia> itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0, xmax = 1.0, ymin = 0.0, ymax = 2.0, npoints_x = 100, npoints_y = 100, ) julia> isapprox(itp_2d_1(1.0, 1.3), func_2d(1.0, 1.3), rtol = 1e-3) true ``` Subexpression: itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0, xmax = 1.0, ymin = 0.0, ymax = 2.0, npoints_x = 100, npoints_y = 100, ) Evaluated output: [ Info: Computing func_2d Interpolation Progress: 0%| | ETA: N/A�[K Progress: 100%|█████████████████████████████████████████| Time: 0:00:00�[K [ Info: func_2d_data.jld2 created and exported! (::FunctionTabulations.var"#wrapped_func#5"{Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, FunctionTabulations.var"#func_interp#21"{Symbol, Symbol, Symbol}, Unitful.FreeUnits{(), NoDims, nothing}, Unitful.FreeUnits{(), NoDims, nothing}, Unitful.FreeUnits{(), NoDims, nothing}, Tuple{}}) (generic function with 1 method) Expected output: diff = Warning: Diff output requires color. [ Info: Computing func_2d Interpolation Progress: 0%| | ETA: N/A�[K Progress: 100%|█████████████████████████████████████████| Time: 0:00:00�[K [ Info: func_2d_data.jld2 created and exported! (::FunctionTabulations.var"#wrapped_func#5"{Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, FunctionTabulations.var"#func_interp#21"{Symbol, Symbol, Symbol}, Unitful.FreeUnits{(), NoDims, nothing}, Unitful.FreeUnits{(), NoDims, nothing}, Unitful.FreeUnits{(), NoDims, nothing}, Tuple{}}) (generic function with 1 method)
Documentation: src/FunctionTabulations.jl#L315
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:315-332 ```jldoctest julia> using Unitful julia> func_2d(x, y) = x^2 + y julia> itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0u"m", xmax = 1.0u"m", ymin = 0.0u"m^2", ymax = 2.0u"m^2", npoints_x = 100, npoints_y = 100, ) julia> isapprox(itp_2d_1(1.0u"m", 1.3u"m^2"), func_2d(1.0u"m", 1.3u"m^2"), rtol = 1e-3) true ``` Subexpression: using Unitful Evaluated output: ERROR: ArgumentError: Package Unitful not found in current path. - Run `import Pkg; Pkg.add("Unitful")` to install the Unitful package. Stacktrace: [1] macro expansion @ ./loading.jl:1772 [inlined] [2] macro expansion @ ./lock.jl:267 [inlined] [3] __require(into::Module, mod::Symbol) @ Base ./loading.jl:1753 [4] #invoke_in_world#3 @ ./essentials.jl:926 [inlined] [5] invoke_in_world @ ./essentials.jl:923 [inlined] [6] require(into::Module, mod::Symbol) @ Base ./loading.jl:1746 Expected output: diff = Warning: Diff output requires color. ERROR: ArgumentError: Package Unitful not found in current path. - Run `import Pkg; Pkg.add("Unitful")` to install the Unitful package. Stacktrace: [1] macro expansion @ ./loading.jl:1772 [inlined] [2] macro expansion @ ./lock.jl:267 [inlined] [3] __require(into::Module, mod::Symbol) @ Base ./loading.jl:1753 [4] #invoke_in_world#3 @ ./essentials.jl:926 [inlined] [5] invoke_in_world @ ./essentials.jl:923 [inlined] [6] require(into::Module, mod::Symbol) @ Base ./loading.jl:1746
Documentation: src/FunctionTabulations.jl#L315
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:315-332 ```jldoctest julia> using Unitful julia> func_2d(x, y) = x^2 + y julia> itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0u"m", xmax = 1.0u"m", ymin = 0.0u"m^2", ymax = 2.0u"m^2", npoints_x = 100, npoints_y = 100, ) julia> isapprox(itp_2d_1(1.0u"m", 1.3u"m^2"), func_2d(1.0u"m", 1.3u"m^2"), rtol = 1e-3) true ``` Subexpression: func_2d(x, y) = x^2 + y Evaluated output: func_2d (generic function with 1 method) Expected output: diff = Warning: Diff output requires color. func_2d (generic function with 1 method)
Documentation: src/FunctionTabulations.jl#L315
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:315-332 ```jldoctest julia> using Unitful julia> func_2d(x, y) = x^2 + y julia> itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0u"m", xmax = 1.0u"m", ymin = 0.0u"m^2", ymax = 2.0u"m^2", npoints_x = 100, npoints_y = 100, ) julia> isapprox(itp_2d_1(1.0u"m", 1.3u"m^2"), func_2d(1.0u"m", 1.3u"m^2"), rtol = 1e-3) true ``` Subexpression: itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0u"m", xmax = 1.0u"m", ymin = 0.0u"m^2", ymax = 2.0u"m^2", npoints_x = 100, npoints_y = 100, ) Evaluated output: ERROR: LoadError: UndefVarError: `@u_str` not defined in expression starting at none:3 Expected output: diff = Warning: Diff output requires color. ERROR: LoadError: UndefVarError: `@u_str` not defined in expression starting at none:3
Documentation: src/FunctionTabulations.jl#L315
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:315-332 ```jldoctest julia> using Unitful julia> func_2d(x, y) = x^2 + y julia> itp_2d_1 = create_tabulation_2D( func_2d, xmin = 0.0u"m", xmax = 1.0u"m", ymin = 0.0u"m^2", ymax = 2.0u"m^2", npoints_x = 100, npoints_y = 100, ) julia> isapprox(itp_2d_1(1.0u"m", 1.3u"m^2"), func_2d(1.0u"m", 1.3u"m^2"), rtol = 1e-3) true ``` Subexpression: isapprox(itp_2d_1(1.0u"m", 1.3u"m^2"), func_2d(1.0u"m", 1.3u"m^2"), rtol = 1e-3) Evaluated output: ERROR: LoadError: UndefVarError: `@u_str` not defined in expression starting at none:1 Expected output: true diff = Warning: Diff output requires color. trueERROR: LoadError: UndefVarError: `@u_str` not defined in expression starting at none:1
Documentation: src/FunctionTabulations.jl#L62
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:62-76 ```jldoctest julia> func_1d(x) = sin(x) julia> itp_1d_1 = create_tabulation_1D( func_1d, xmin = 0.0, xmax = 3.0, npoints = 100, x_scale = :linear, f_scale = :linear ) julia> isapprox(itp_1d_1(2.0), func_1d(2.0), rtol = 1e-3) true ``` Subexpression: func_1d(x) = sin(x) Evaluated output: func_1d (generic function with 1 method) Expected output: diff = Warning: Diff output requires color. func_1d (generic function with 1 method)
Documentation: src/FunctionTabulations.jl#L62
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:62-76 ```jldoctest julia> func_1d(x) = sin(x) julia> itp_1d_1 = create_tabulation_1D( func_1d, xmin = 0.0, xmax = 3.0, npoints = 100, x_scale = :linear, f_scale = :linear ) julia> isapprox(itp_1d_1(2.0), func_1d(2.0), rtol = 1e-3) true ``` Subexpression: itp_1d_1 = create_tabulation_1D( func_1d, xmin = 0.0, xmax = 3.0, npoints = 100, x_scale = :linear, f_scale = :linear ) Evaluated output: [ Info: Computing func_1d Interpolation [ Info: func_1d_data.jld2 created and exported! (::FunctionTabulations.var"#wrapped_func#3"{Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, FunctionTabulations.var"#func_interp#17"{Symbol, Symbol}, Unitful.FreeUnits{(), NoDims, nothing}, Unitful.FreeUnits{(), NoDims, nothing}, Tuple{}}) (generic function with 1 method) Expected output: diff = Warning: Diff output requires color. [ Info: Computing func_1d Interpolation [ Info: func_1d_data.jld2 created and exported! (::FunctionTabulations.var"#wrapped_func#3"{Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, FunctionTabulations.var"#func_interp#17"{Symbol, Symbol}, Unitful.FreeUnits{(), NoDims, nothing}, Unitful.FreeUnits{(), NoDims, nothing}, Tuple{}}) (generic function with 1 method)
Documentation: src/FunctionTabulations.jl#L80
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:80-96 ```jldoctest julia> using Unitful julia> func_1d(x) = x^2 julia> itp_1d_1 = create_tabulation_1D( func_1d, xmin = 0.0u"m", xmax = 3.0u"m", npoints = 100, x_scale = :linear, f_scale = :linear ) julia> isapprox(itp_1d_1(2.0u"m"), func_1d(2.0u"m"), rtol = 1e-3) true ``` Subexpression: using Unitful Evaluated output: ERROR: ArgumentError: Package Unitful not found in current path. - Run `import Pkg; Pkg.add("Unitful")` to install the Unitful package. Stacktrace: [1] macro expansion @ ./loading.jl:1772 [inlined] [2] macro expansion @ ./lock.jl:267 [inlined] [3] __require(into::Module, mod::Symbol) @ Base ./loading.jl:1753 [4] #invoke_in_world#3 @ ./essentials.jl:926 [inlined] [5] invoke_in_world @ ./essentials.jl:923 [inlined] [6] require(into::Module, mod::Symbol) @ Base ./loading.jl:1746 Expected output: diff = Warning: Diff output requires color. ERROR: ArgumentError: Package Unitful not found in current path. - Run `import Pkg; Pkg.add("Unitful")` to install the Unitful package. Stacktrace: [1] macro expansion @ ./loading.jl:1772 [inlined] [2] macro expansion @ ./lock.jl:267 [inlined] [3] __require(into::Module, mod::Symbol) @ Base ./loading.jl:1753 [4] #invoke_in_world#3 @ ./essentials.jl:926 [inlined] [5] invoke_in_world @ ./essentials.jl:923 [inlined] [6] require(into::Module, mod::Symbol) @ Base ./loading.jl:1746
Documentation: src/FunctionTabulations.jl#L80
doctest failure in ~/work/FunctionTabulations.jl/FunctionTabulations.jl/src/FunctionTabulations.jl:80-96 ```jldoctest julia> using Unitful julia> func_1d(x) = x^2 julia> itp_1d_1 = create_tabulation_1D( func_1d, xmin = 0.0u"m", xmax = 3.0u"m", npoints = 100, x_scale = :linear, f_scale = :linear ) julia> isapprox(itp_1d_1(2.0u"m"), func_1d(2.0u"m"), rtol = 1e-3) true ``` Subexpression: func_1d(x) = x^2 Evaluated output: func_1d (generic function with 1 method) Expected output: diff = Warning: Diff output requires color. func_1d (generic function with 1 method)
Julia 1.10 - ubuntu-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia 1.10 - ubuntu-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia 1.9 - ubuntu-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia 1.9 - ubuntu-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia nightly - ubuntu-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia nightly - ubuntu-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia 1.9 - windows-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia 1.9 - windows-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia 1.9 - macOS-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia 1.9 - macOS-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia 1.10 - windows-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia 1.10 - windows-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
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 nightly - windows-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia nightly - windows-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia 1.10 - macOS-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia 1.10 - macOS-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Julia nightly - macOS-latest - x64 - push
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, julia-actions/setup-julia@v1, actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Julia nightly - macOS-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
[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`