Skip to content

Commit 04f5857

Browse files
authored
Merge pull request #21 from JuliaGeometry/jf/docs-reorg
Jf/docs reorg
2 parents 7ee37d1 + 1cf3886 commit 04f5857

27 files changed

+696
-523
lines changed

.codespellrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[codespell]
2+
ignore-words-list = Missings

.github/workflows/ci.yml

+26-13
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,34 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.6' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
18+
- 'lts' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
1919
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
2020
- 'nightly'
2121
os:
2222
- ubuntu-latest
23-
- macos-latest
2423
- windows-latest
24+
- macOS-13 # intel
25+
- macOS-14 # arm
2526
arch:
2627
- x64
28+
- aarch64
29+
exclude:
30+
- os: ubuntu-latest
31+
arch: aarch64
32+
- os: windows-latest
33+
arch: aarch64
34+
- os: macOS-13
35+
arch: aarch64
36+
- os: macOS-14
37+
arch: x64
2738
steps:
28-
- uses: actions/checkout@v2
29-
- uses: julia-actions/setup-julia@v1
39+
- uses: actions/checkout@v4
40+
- uses: julia-actions/setup-julia@v2
3041
with:
3142
version: ${{ matrix.version }}
3243
arch: ${{ matrix.arch }}
33-
- uses: julia-actions/cache@v2
44+
- uses: actions/cache@v4
3445
env:
35-
PYTHON: ""
3646
cache-name: cache-artifacts
3747
with:
3848
path: ~/.julia/artifacts
@@ -42,17 +52,22 @@ jobs:
4252
${{ runner.os }}-test-
4353
${{ runner.os }}-
4454
- uses: julia-actions/julia-buildpkg@v1
55+
- run: |
56+
julia --project=docs -e '
57+
using Pkg
58+
Pkg.develop(PackageSpec(path=pwd()))
59+
Pkg.instantiate()'
4560
- uses: julia-actions/julia-runtest@v1
61+
# env:
62+
# JULIA_NUM_THREADS: 4
4663
- uses: julia-actions/julia-processcoverage@v1
47-
- uses: codecov/codecov-action@v1
48-
with:
49-
file: lcov.info
64+
- uses: codecov/codecov-action@v5
5065
docs:
5166
name: Documentation
5267
runs-on: ubuntu-latest
5368
steps:
54-
- uses: actions/checkout@v2
55-
- uses: julia-actions/setup-julia@v1
69+
- uses: actions/checkout@v4
70+
- uses: julia-actions/setup-julia@v2
5671
with:
5772
version: '1'
5873
- run: |
@@ -67,7 +82,5 @@ jobs:
6782
# doctest(MYPACKAGE)'
6883
- run: julia --project=docs docs/make.jl
6984
env:
70-
PYTHON: ""
7185
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7286
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
73-

.github/workflows/format_check.yml

-45
This file was deleted.

.github/workflows/pre-commit.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: code quality checks
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
pre-commit:
8+
name: run pre-commit
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: julia-actions/setup-julia@v2
13+
with:
14+
version: 1
15+
- run: |
16+
julia --project=@runic -e '
17+
using Pkg
18+
Pkg.add("Runic")'
19+
env:
20+
PYTHON: ""
21+
- uses: actions/setup-python@v5
22+
- uses: pre-commit/[email protected]

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ Manifest.toml
77
deps/build.log
88
deps/deps.jl
99
deps/usr
10-

.pre-commit-config.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v5.0.0
4+
hooks:
5+
- id: check-added-large-files
6+
args: [--maxkb=8192]
7+
- id: check-merge-conflict
8+
- id: check-toml
9+
- id: check-yaml
10+
args: [--allow-multiple-documents]
11+
- id: end-of-file-fixer
12+
- id: no-commit-to-branch
13+
args: [--branch,master]
14+
- repo: https://github.com/gitleaks/gitleaks
15+
rev: v8.16.3
16+
hooks:
17+
- id: gitleaks
18+
- repo: https://github.com/fredrikekre/runic-pre-commit
19+
rev: v1.0.0
20+
hooks:
21+
- id: runic
22+
# - repo: https://github.com/codespell-project/codespell
23+
# rev: v2.2.4
24+
# hooks:
25+
# - id: codespell

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- JuliaFormatter
88

99
## v2.2.0 Oct 10, 2022
10-
- Fix ReadOnlyMemoryError occuring sometimes on windows for Julia <=1.8 and consistently for 1.9
10+
- Fix ReadOnlyMemoryError occurring sometimes on windows for Julia <=1.8 and consistently for 1.9
1111
- New upstream repo for Triangle c source: https://github.com/JuliaGeometry/Triangle
1212

1313
## v2.1.0 Oct 7, 2021

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Triangulate
44
[![Build status](https://github.com/JuliaGeometry/Triangulate.jl/workflows/linux-macos-windows/badge.svg)](https://github.com/JuliaGeometry/Triangulate.jl/actions)
55
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliageometry.github.io/Triangulate.jl/stable)
66
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/T/Triangulate.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
7+
[![code style: runic](https://img.shields.io/badge/code_style-%E1%9A%B1%E1%9A%A2%E1%9A%BE%E1%9B%81%E1%9A%B2-black)](https://github.com/fredrikekre/Runic.jl)
78

89
Julia wrapper for Jonathan Richard Shewchuk's Triangle mesh generator. The package tries to provide a 1:1 mapping of Triangle's functionality to Julia.
910

@@ -40,5 +41,3 @@ free, then you are not required to make any arrangement with me.)
4041
## Acknowledgement
4142
This package uses ideas from [TriangleMesh.jl](https://github.com/konsim83/TriangleMesh.jl)
4243
and [Triangle.jl](https://github.com/cvdlab/Triangle.jl).
43-
44-

docs/make.jl

+17-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function rendernotebook(name)
77
ENV["PLUTO_PROJECT"] = joinpath(@__DIR__, "..", "examples")
88
notebook = Pluto.SessionActions.open(session, input; run_async = false)
99
html_contents = Pluto.generate_html(notebook)
10-
write(output, html_contents)
10+
return write(output, html_contents)
1111
end
1212

1313
function make_all()
@@ -17,19 +17,23 @@ function make_all()
1717
rendernotebook("pluto-examples")
1818
Pkg.activate(@__DIR__)
1919

20-
makedocs(; sitename = "Triangulate.jl",
21-
modules = [Triangulate],
22-
clean = false,
23-
doctest = false,
24-
authors = "Juergen Fuhrmann, Francesco Furiani, Konrad Simon",
25-
repo = "https://github.com/JuliaGeometry/Triangulate.jl",
26-
pages = ["Home" => "index.md",
27-
"triangle-h.md",
28-
"Major changes" => "changes.md",
29-
"allindex.md",
30-
"examples.md"])
20+
makedocs(;
21+
sitename = "Triangulate.jl",
22+
modules = [Triangulate],
23+
clean = false,
24+
doctest = false,
25+
authors = "Juergen Fuhrmann, Francesco Furiani, Konrad Simon",
26+
repo = "https://github.com/JuliaGeometry/Triangulate.jl",
27+
pages = [
28+
"Home" => "index.md",
29+
"triangle-h.md",
30+
"Major changes" => "changes.md",
31+
"allindex.md",
32+
"examples.md",
33+
]
34+
)
3135

32-
if !isinteractive()
36+
return if !isinteractive()
3337
deploydocs(; repo = "github.com/JuliaGeometry/Triangulate.jl.git")
3438
end
3539
end

docs/src/examples.md

-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@ Generated from the Pluto notebook [pluto-examples.jl](https://github.com/JuliaGe
55
```@raw html
66
<iframe style="height:15000px" width="100%" src="../pluto-examples.html"> </iframe>
77
```
8-
9-
10-

docs/src/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@ of Triangle.
3838
Modules = [Triangulate]
3939
Pages = [ "triangulateio.jl", "plot.jl"]
4040
```
41-

0 commit comments

Comments
 (0)