-
-
Notifications
You must be signed in to change notification settings - Fork 17
358 lines (355 loc) · 15.1 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
name: mdbook-pdf test
on:
workflow_dispatch: # Allow manual triggers
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: "macos-latest"
repo: "https://github.com/HollowMan6/mdbook-pdf"
dir: "test_doc"
name: "An_Example"
backend-depends: ""
static-url: ""
- os: "ubuntu-latest"
repo: "https://github.com/HollowMan6/mdbook-pdf"
dir: "test_doc"
name: "An_Example"
backend-depends: ""
static-url: ""
- os: "macos-latest"
repo: "https://github.com/rust-lang/cargo"
dir: "cargo/src/doc"
name: "Cargo_Book"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/cargo/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/cargo"
dir: "cargo/src/doc"
name: "Cargo_Book"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/cargo/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/edition-guide"
dir: "edition-guide"
name: "Edition_Guide"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/edition-guide/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/edition-guide"
dir: "edition-guide"
name: "Edition_Guide"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/edition-guide/"
- os: "macos-latest"
repo: "https://github.com/rust-embedded/book"
dir: "book"
name: "Embedded_Rust_Book"
backend-depends: ""
static-url: "https://docs.rust-embedded.org/book/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-embedded/book"
dir: "book"
name: "Embedded_Rust_Book"
backend-depends: ""
static-url: "https://docs.rust-embedded.org/book/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/mdBook"
dir: "mdBook/guide"
name: "Mdbook_User_Guide"
backend-depends: ""
static-url: "https://rust-lang.github.io/mdBook/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/mdBook"
dir: "mdBook/guide"
name: "Mdbook_User_Guide"
backend-depends: ""
static-url: "https://rust-lang.github.io/mdBook/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/mdBook"
dir: "mdBook/test_book"
name: "Mdbook_Test_Book"
backend-depends: ""
static-url: ""
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/mdBook"
dir: "mdBook/test_book"
name: "Mdbook_Test_Book"
backend-depends: ""
static-url: ""
- os: "macos-latest"
repo: "https://github.com/rust-lang/reference"
dir: "reference"
name: "Rust_Reference"
backend-depends: ""
static-url: "https://doc.rust-lang.org/nightly/reference/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/reference"
dir: "reference"
name: "Rust_Reference"
backend-depends: ""
static-url: "https://doc.rust-lang.org/nightly/reference/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/rust-by-example"
dir: "rust-by-example"
name: "Rust_By_Example"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/rust-by-example/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/rust-by-example"
dir: "rust-by-example"
name: "Rust_By_Example"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/rust-by-example/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/book"
dir: "book"
name: "Rust_Programming_Language"
backend-depends: ""
static-url: "https://doc.rust-lang.org/book/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/book"
dir: "book"
name: "Rust_Programming_Language"
backend-depends: ""
static-url: "https://doc.rust-lang.org/book/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/rustc-dev-guide"
dir: "rustc-dev-guide"
name: "Rustc_Book"
backend-depends: "mdbook-linkcheck mdbook-toc mdbook-mermaid"
static-url: "https://rustc-dev-guide.rust-lang.org/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/rustc-dev-guide"
dir: "rustc-dev-guide"
name: "Rustc_Book"
backend-depends: "mdbook-linkcheck mdbook-toc mdbook-mermaid"
static-url: "https://rustc-dev-guide.rust-lang.org/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/rust"
dir: "rust/src/doc/rustdoc"
name: "Rustdoc_Book"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/rustdoc/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/rust"
dir: "rust/src/doc/rustdoc"
name: "Rustdoc_Book"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/rustdoc/"
- os: "macos-latest"
repo: "https://github.com/rust-lang/nomicon"
dir: "nomicon"
name: "Rust_Nomicon"
backend-depends: ""
static-url: "https://doc.rust-lang.org/nomicon/"
- os: "ubuntu-latest"
repo: "https://github.com/rust-lang/nomicon"
dir: "nomicon"
name: "Rust_Nomicon"
backend-depends: ""
static-url: "https://doc.rust-lang.org/nomicon/"
# - os: "macos-latest"
# repo: "https://github.com/google/comprehensive-rust"
# dir: "comprehensive-rust"
# name: "Comprehensive_Rust"
# backend-depends: "mdbook-svgbob"
# static-url: "https://google.github.io/comprehensive-rust/"
# - os: "ubuntu-latest"
# repo: "https://github.com/google/comprehensive-rust"
# dir: "comprehensive-rust"
# name: "Comprehensive_Rust"
# backend-depends: "mdbook-svgbob"
# static-url: "https://google.github.io/comprehensive-rust/"
- os: "macos-latest"
repo: "https://github.com/CnTransGroup/EffectiveModernCppChinese"
dir: "EffectiveModernCppChinese"
name: "Effective_Modern_C++"
backend-depends: ""
static-url: "https://cntransgroup.github.io/EffectiveModernCppChinese/"
- os: "ubuntu-latest"
repo: "https://github.com/CnTransGroup/EffectiveModernCppChinese"
dir: "EffectiveModernCppChinese"
name: "Effective_Modern_C++"
backend-depends: ""
static-url: "https://cntransgroup.github.io/EffectiveModernCppChinese/"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install Chinese Fonts to add support for Chinese books
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install fonts-wqy-microhei fonts-wqy-zenhei
- name: Install mdbook related backend
if: matrix.backend-depends != ''
run: |
cargo install ${{ matrix.backend-depends }}
- name: Build and install mdbook executable
run: |
cargo install -f --git https://github.com/HollowMan6/mdBook mdbook
- name: Build mdbook-pdf dev and install
run: |
cargo build
mkdir -p ~/.cache/pip
sudo pip install .
mv target/debug/mdbook-pdf /usr/local/bin/
- name: Build Test Docs for PDF
run: |
git clone ${{ matrix.repo }}
cd ${{ matrix.dir }}
if [ `grep -c "output.pdf" book.toml` -eq '0' ]; then
echo "[output.pdf]" >> book.toml
echo "display-header-footer = true" >> book.toml
echo "print-background = true" >> book.toml
echo "paper-width = 8" >> book.toml
echo "paper-height = 10" >> book.toml
echo "margin-top = 0.5" >> book.toml
echo "margin-bottom = 0.5" >> book.toml
echo "margin-left = 0.5" >> book.toml
echo "margin-right = 0.5" >> book.toml
echo "static-site-url = '${{ matrix.static-url }}'" >> book.toml
echo "header-template = \"<h3 style='font-size:8px; margin-left: 48%' class='title'></h3>\"" >> book.toml
echo "footer-template = \"<p style='font-size:10px; margin-left: 48%'><span class='pageNumber'></span> / <span class='totalPages'></span></p>\"" >> book.toml
echo "[output.pdf-outline]" >> book.toml
fi
mdbook build
- name: Upload PDF File to Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_${{ matrix.name }}_PDF
path: ${{ matrix.dir }}/book/pdf-outline/*.pdf
- name: Upload Build HTML to Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_${{ matrix.name }}_HTML
path: ${{ matrix.dir }}/book/html/*
test-win:
strategy:
fail-fast: false
matrix:
include:
- repo: "https://github.com/rust-lang/cargo"
dir: "cargo/src/doc"
name: "Cargo_Book"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/cargo/"
- repo: "https://github.com/rust-lang/edition-guide"
dir: "edition-guide"
name: "Edition_Guide"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/edition-guide/"
- repo: "https://github.com/rust-embedded/book"
dir: "book"
name: "Embedded_Rust_Book"
backend-depends: ""
static-url: "https://docs.rust-embedded.org/book/"
- repo: "https://github.com/rust-lang/mdBook"
dir: "mdBook/guide"
name: "Mdbook_User_Guide"
backend-depends: ""
static-url: "https://rust-lang.github.io/mdBook/"
- repo: "https://github.com/rust-lang/mdBook"
dir: "mdBook/test_book"
name: "Mdbook_Test_Book"
backend-depends: ""
static-url: ""
- repo: "https://github.com/rust-lang/reference"
dir: "reference"
name: "Rust_Reference"
backend-depends: ""
static-url: "https://doc.rust-lang.org/nightly/reference/"
- repo: "https://github.com/rust-lang/rust-by-example"
dir: "rust-by-example"
name: "Rust_By_Example"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/rust-by-example/"
- repo: "https://github.com/rust-lang/book"
dir: "book"
name: "Rust_Programming_Language"
backend-depends: ""
static-url: "https://doc.rust-lang.org/book/"
- repo: "https://github.com/rust-lang/rust"
dir: "rust/src/doc/rustdoc"
name: "Rustdoc_Book"
backend-depends: ""
static-url: "https://doc.rust-lang.org/stable/rustdoc/"
- repo: "https://github.com/rust-lang/nomicon"
dir: "nomicon"
name: "Rust_Nomicon"
backend-depends: ""
static-url: "https://doc.rust-lang.org/nomicon/"
# - repo: "https://github.com/google/comprehensive-rust"
# dir: "comprehensive-rust"
# name: "Comprehensive_Rust"
# backend-depends: "mdbook-svgbob"
# static-url: "https://google.github.io/comprehensive-rust/"
- repo: "https://github.com/CnTransGroup/EffectiveModernCppChinese"
dir: "EffectiveModernCppChinese"
name: "Effective_Modern_C++"
backend-depends: ""
static-url: "https://cntransgroup.github.io/EffectiveModernCppChinese/"
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install mdbook related backend
if: matrix.backend-depends != ''
run: |
cargo install ${{ matrix.backend-depends }}
- name: Build and install mdbook executable
run: |
cargo install -f --git https://github.com/HollowMan6/mdBook mdbook
- name: Build mdbook-pdf dev and install
run: |
cargo build
pip install .
cp target/debug/mdbook-pdf.exe .
- name: Build Test Docs for PDF
run: |
git clone ${{ matrix.repo }}
$env:Path += ";$pwd"
cd ${{ matrix.dir }}
echo "[output.pdf]" >> book.toml
echo "display-header-footer = true" >> book.toml
echo "print-background = true" >> book.toml
echo "paper-width = 8" >> book.toml
echo "paper-height = 10" >> book.toml
echo "margin-top = 0.5" >> book.toml
echo "margin-bottom = 0.5" >> book.toml
echo "margin-left = 0.5" >> book.toml
echo "margin-right = 0.5" >> book.toml
echo "static-site-url = '${{ matrix.static-url }}'" >> book.toml
echo "header-template = `"<h3 style='font-size:8px; margin-left: 48%' class='title'></h3>`"" >> book.toml
echo "footer-template = `"<p style='font-size:10px; margin-left: 48%'><span class='pageNumber'></span> / <span class='totalPages'></span></p>`"" >> book.toml
echo "[output.pdf-outline]" >> book.toml
mdbook build
- name: Upload PDF File to Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_${{ matrix.name }}_PDF
path: ${{ matrix.dir }}/book/pdf-outline/*.pdf
- name: Upload Build HTML to Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_${{ matrix.name }}_HTML
path: ${{ matrix.dir }}/book/html/*