Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
DOCUMENTER_LATEX_DEBUG: ${{ github.workspace }}/latex-debug-logs
JULIA_NUM_THREADS: 4
run: julia --color=yes --project=docs -p 2 docs/make.jl
- uses: actions/upload-artifact@v7
if: ${{ always() }}
Expand Down
1 change: 0 additions & 1 deletion docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ latex_build/
latex_src/
src/tutorials/*/*.md
!src/tutorials/*/introduction.md
!src/tutorials/algorithms/parallelism.md
src/moi/
src/tutorials/linear/transp.txt
src/release_notes.md
Expand Down
1 change: 1 addition & 0 deletions docs/make_utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ function literate_tutorials()
joinpath("getting_started", "performance_tips.md"),
joinpath("linear", "tips_and_tricks.md"),
joinpath("linear", "typed_indices.md"),
joinpath("algorithms", "parallelism.md"),
]
filename = joinpath(@__DIR__, "src", "tutorials", file)
content = read(filename, String)
Expand Down
Loading
Loading