File tree Expand file tree Collapse file tree 5 files changed +23
-15
lines changed
actions/install-dependencies Expand file tree Collapse file tree 5 files changed +23
-15
lines changed Original file line number Diff line number Diff line change 9
9
echo "[command]sudo apt-get update"
10
10
sudo apt-get update
11
11
12
+ # Explanation of these dependencies:
13
+ # - https://github.com/ImageMagick/ImageMagick/issues/374#issuecomment-279252866
14
+ # - aspell-en for spellchecking
12
15
- shell : bash
13
16
run : |
14
17
echo "[command]sudo apt-get install -y ..."
19
22
libgraphviz-dev \
20
23
gsfonts \
21
24
libfreetype6-dev \
22
- libfontconfig1-dev
23
- # Explanation of some of these dependencies:
24
- # https://github.com/ImageMagick/ImageMagick/issues/374#issuecomment-279252866
25
+ libfontconfig1-dev \
26
+ aspell-en
25
27
26
28
- uses : conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169 # v2.1.1
27
29
with :
Original file line number Diff line number Diff line change @@ -123,7 +123,8 @@ jobs:
123
123
html \
124
124
slides \
125
125
linkcheck \
126
- SPHINXOPTS='-Wn' \
126
+ SPHINXOPTS='-Wn --keep-going' \
127
+ FORCE_COLOR=true \
127
128
STABLE=${{ github.event.inputs.set_stable }} \
128
129
LATEST=${{ github.event.inputs.set_latest }}
129
130
Original file line number Diff line number Diff line change @@ -109,10 +109,11 @@ jobs:
109
109
html \
110
110
slides \
111
111
linkcheck \
112
- SPHINXOPTS="-Wn -A sidebar_version_name=${version}" \
112
+ SPHINXOPTS="-Wn --keep-going - A sidebar_version_name=${version}" \
113
113
STABLE=false \
114
114
LATEST=false \
115
- BUILDDIR='doc/nightly'
115
+ BUILDDIR='doc/nightly' \
116
+ FORCE_COLOR=true
116
117
git -C gh-pages add 'nightly' 'versions.json'
117
118
118
119
- name : push changes
Original file line number Diff line number Diff line change @@ -74,11 +74,21 @@ jobs:
74
74
flake8
75
75
eslint .
76
76
77
- - name : build
77
+ - name : (debug only) list language dictionaries
78
+ if : runner.debug
79
+ shell : python
80
+ env :
81
+ PYENCHANT_VERBOSE_FIND : true
78
82
run : |
79
- make html slides spelling linkcheck doctest SPHINXOPTS='-Wn'
83
+ import enchant
84
+ print(enchant.list_dicts())
80
85
81
- - name : debug
86
+ - name : build & test
87
+ run : |
88
+ make html slides spelling linkcheck doctest \
89
+ SPHINXOPTS='-Wn --keep-going' FORCE_COLOR=true
90
+
91
+ - name : debug sphinx failure
82
92
if : failure()
83
93
run : |
84
94
cat /tmp/sphinx-err* || true # sphinx traceback
Original file line number Diff line number Diff line change 5
5
authenticator
6
6
bar
7
7
baz
8
- behavior
9
- behaviour
10
8
boolean
11
9
booleans
12
- colored
13
- coloured
14
10
conf
15
11
config
16
12
configargs
28
24
diffs
29
25
dir
30
26
dirs
31
- duration
32
27
durations
33
28
env
34
29
etc
@@ -139,7 +134,6 @@ retrigger
139
134
retriggered
140
135
retriggering
141
136
roadmap
142
- routines
143
137
runahead
144
138
runnable
145
139
runtime
You can’t perform that action at this time.
0 commit comments