ci: fix generate epub #302
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Update rustup | |
| run: rustup self update | |
| - name: Install Rust | |
| run: | | |
| rustup set profile minimal | |
| rustup toolchain install 1.78 -c rust-docs | |
| rustup default 1.78 | |
| - name: Install mdbook | |
| run: | | |
| mkdir bin | |
| curl -sSL https://github.com/RustLangES/mdBook/releases/download/v0.4.36-localization-v0.4/mdbook-v0.4.36-localization-v0.4-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin | |
| curl -sSL https://github.com/catppuccin/mdBook/releases/download/v0.1.1/mdbook-catppuccin-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin | |
| echo "$(pwd)/bin" >> ${GITHUB_PATH} | |
| - name: Install mdbook-epub backend | |
| run: cargo install mdbook-epub --root . | |
| - name: Report versions | |
| run: | | |
| rustup --version | |
| rustc -Vv | |
| mdbook --version | |
| mdbook-epub --version | |
| - name: Run tests | |
| run: mdbook test | |
| package_tests: | |
| name: Run package tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Update rustup | |
| run: rustup self update | |
| - name: Install Rust | |
| run: | | |
| rustup set profile minimal | |
| rustup toolchain install 1.76 -c rust-docs | |
| rustup default 1.76 | |
| - name: Run `tools` package tests | |
| run: | | |
| cargo test | |
| - name: Run `mdbook-trpl-note` package tests | |
| working-directory: packages/mdbook-trpl-note | |
| run: | | |
| cargo test | |
| - name: Run `mdbook-trpl-listing` package tests | |
| working-directory: packages/mdbook-trpl-listing | |
| run: | | |
| cargo test | |
| lint: | |
| name: Run lints | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Update rustup | |
| run: rustup self update | |
| - name: Install Rust | |
| run: | | |
| rustup set profile minimal | |
| rustup toolchain install nightly -c rust-docs | |
| rustup override set nightly | |
| - name: Install mdbook | |
| run: | | |
| mkdir bin | |
| curl -sSL https://github.com/RustLangES/mdBook/releases/download/v0.4.36-localization-v0.4/mdbook-v0.4.36-localization-v0.4-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin | |
| echo "$(pwd)/bin" >> ${GITHUB_PATH} | |
| - name: Install mdbook-epub backend | |
| run: cargo install mdbook-epub --root . | |
| - name: Install mdbook-trpl-note | |
| run: cargo install --path packages/mdbook-trpl-note | |
| - name: Install mdbook-trpl-listing | |
| run: cargo install --path packages/mdbook-trpl-listing | |
| - name: Install aspell | |
| run: sudo apt-get install aspell aspell-es aspell-en | |
| - name: Install shellcheck | |
| run: sudo apt-get install shellcheck | |
| - name: Report versions | |
| run: | | |
| rustup --version | |
| rustc -Vv | |
| mdbook --version | |
| aspell --version | |
| shellcheck --version | |
| mdbook-epub --version | |
| - name: Shellcheck | |
| run: find . -name '*.sh' | xargs shellcheck | |
| - name: Spellcheck | |
| run: bash ci/spellcheck.sh list | |
| - name: Lint for local file paths | |
| run: | | |
| mdbook build | |
| cargo run --bin lfp src | |
| - name: Run epub backend | |
| run: mdbook-epub --standalone . | |
| - name: Validate references | |
| run: bash ci/validate.sh | |
| - name: Check for broken links | |
| run: | | |
| curl -sSLo linkcheck.sh \ | |
| https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh | |
| # Cannot use --all here because of the generated redirect pages aren't available. | |
| sh linkcheck.sh book |