mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-16 14:53:28 +02:00
1040115d8c
* add ko.po * translate ko(~23.01.19) * change speaker-note ko * change id * translate ko(~23.01.20) * ~day3 keynote * draft done tof3446a91
* add @jiyongp comments of upstream PR #276. * sync & apply review comments(upstream) sync585509bb
* After 10000 line apply review comments(upstream) * chgange build.yml * Fix the inconsistent newline character problem for the KO translation If a msgid does not end with the newline character, so should the msgstr. Test: msgfmt --statistics -o /dev/null po/ko.po No error, but shows `1085 translated messages, 675 untranslated messages.` --------- Co-authored-by: Evan kim(cli) <keispace.kyj@gmail.com>
112 lines
2.6 KiB
YAML
112 lines
2.6 KiB
YAML
name: Test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
mdbook:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Install mdbook
|
|
uses: ./.github/workflows/install-mdbook
|
|
|
|
- name: Test code snippets
|
|
run: mdbook test
|
|
|
|
cargo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Test Rust code
|
|
run: cargo test
|
|
|
|
- name: Test i18n-helpers
|
|
run: cargo test
|
|
working-directory: i18n-helpers
|
|
|
|
i18n-helpers:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Install Gettext
|
|
run: sudo apt install gettext
|
|
|
|
- name: Install mdbook
|
|
uses: ./.github/workflows/install-mdbook
|
|
|
|
- name: Generate po/messages.pot
|
|
run: mdbook build -d po
|
|
env:
|
|
MDBOOK_OUTPUT: '{"xgettext": {"pot-file": "messages.pot"}}'
|
|
|
|
- name: Test messages.pot
|
|
run: msgfmt --statistics -o /dev/null po/messages.pot
|
|
|
|
- name: Expand includes without translation
|
|
run: mdbook build -d expanded
|
|
env:
|
|
MDBOOK_OUTPUT: '{"markdown": {}}'
|
|
|
|
- name: Expand includes with no-op translation
|
|
run: mdbook build -d no-op
|
|
env:
|
|
MDBOOK_OUTPUT: '{"markdown": {}}'
|
|
MDBOOK_PREPROCESSOR__GETTEXT__PO_FILE: po/messages.pot
|
|
|
|
- name: Compare no translation to no-op translation
|
|
run: diff -r expanded no-op
|
|
|
|
translations:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
language:
|
|
- da
|
|
- ko
|
|
env:
|
|
MDBOOK_BOOK__LANGUAGE: ${{ matrix.language }}
|
|
MDBOOK_PREPROCESSOR__GETTEXT__PO_FILE: po/${{ matrix.language }}.po
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Install Gettext
|
|
run: sudo apt install gettext
|
|
|
|
- name: Install mdbook
|
|
uses: ./.github/workflows/install-mdbook
|
|
|
|
- name: Test ${{ matrix.language }} translation
|
|
run: msgfmt --statistics -o /dev/null po/${{ matrix.language }}.po
|
|
|
|
- name: Build course with ${{ matrix.language }} translation
|
|
run: mdbook build
|
|
|
|
- name: Test code snippets with ${{ matrix.language }} translation
|
|
run: mdbook test
|