Skip to content

Commit 9fde70e

Browse files
committed
Document translation workflow
1 parent 9493a8d commit 9fde70e

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

.github/workflows/build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ set -Eeuo pipefail
99
#
1010
# The src/ and third_party/ directories are left in a dirty state so
1111
# you can run `mdbook test` and other commands afterwards.
12+
#
13+
# See also TRANSLATIONS.md.
1214

1315
book_lang=${1:?"Usage: $0 <book-lang> <dest-dir>"}
1416
dest_dir=${2:?"Usage: $0 <book-lang> <dest-dir>"}

.github/workflows/publish.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Publish
22

3+
# See also TRANSLATIONS.md.
4+
35
on:
46
push:
57
branches:

TRANSLATIONS.md

+48
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,54 @@ the hard work, even if it is incomplete.
215215

216216
[CODEOWNERS]: https://github.com/google/comprehensive-rust/blob/main/.github/CODEOWNERS
217217

218+
## Publication Workflow
219+
220+
> This section is for the developers of Comprehensive Rust, but it might give
221+
> you valuable background information on how the translations are published.
222+
223+
When a change is made to the `main` branch, the
224+
[`publish.yml`](https://github.com/google/comprehensive-rust/blob/main/.github/workflows/publish.yml)
225+
GitHub CI workflow starts.
226+
227+
The `publish` job in this workflow will:
228+
229+
- Install dependencies as described in [`CONTRIBUTING`](CONTRIBUTING.md).
230+
231+
- Build every translation of the course, including the original English, using
232+
[`build.sh`](https://github.com/google/comprehensive-rust/blob/main/.github/workflows/build.sh).
233+
The English HTML ends up in `book/html/`, the HTML for the `xx` language ends up in
234+
`book/xx/html/`.
235+
236+
- Publish the entire `book/html/` directory to
237+
https://google.github.io/comprehensive-rust/.
238+
239+
### `build.sh`
240+
241+
The `build.sh` script is used both when testing code from a PR and when
242+
publishing the finished book.
243+
244+
The job of the script is to call `mdbook build`, but with a few extra steps:
245+
246+
- It will enable the PDF output using `mdbook-pandoc`. This is disabled by
247+
default to make it easier for people to run `mdbook build` without having to
248+
configure LaTeX.
249+
250+
#### Restoring Translations
251+
252+
When building a translation, `build.sh` will restore all Markdown files to how
253+
they looked at the time recorded in the POT-Creation-Date header. This means
254+
that:
255+
256+
- A translation does not degrade when the English text is changed.
257+
- A translation will not received the latest fixes to the English text.
258+
259+
The script restores the Markdown with a simple `git restore --source
260+
$LAST_COMMIT src/ third_party/` command, where `$LAST_COMMIT` is the commit at
261+
the time of the POT-Creation-Date header.
262+
263+
A consequence of this is that we use the latest theme, CSS, JavaScript, etc for
264+
each translation.
265+
218266
## Status reports
219267

220268
Two translation status reports are automatically generated:

0 commit comments

Comments
 (0)