mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-15 22:37:28 +02:00
186d333227
* Run builds on both Mac OS and Linux This would have helped us catch #570. * Fix MacOS CI (#848) * Revert unnecessary changes The changes might be good, but I want to keep this PR small and focused. If we end up with the extra `cfg` statements, we should include a comment to let students know what they do: we’re targeting people new to Rust, so we need to be careful with explanations. --------- Co-authored-by: Dominik Maier <domenukk@gmail.com>
149 lines
3.8 KiB
YAML
149 lines
3.8 KiB
YAML
name: Test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install nightly rustfmt
|
|
run: |
|
|
rustup default nightly
|
|
rustup component add rustfmt
|
|
|
|
- name: Check formatting
|
|
uses: dprint/check@v2.2
|
|
|
|
cargo:
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Build Rust code
|
|
run: cargo build
|
|
|
|
- name: Test Rust code
|
|
run: cargo test
|
|
|
|
bare-metal:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- directory: src/bare-metal/alloc-example
|
|
target: aarch64-unknown-none
|
|
- directory: src/bare-metal/aps/examples
|
|
target: aarch64-unknown-none
|
|
- directory: src/bare-metal/microcontrollers/examples
|
|
target: thumbv7em-none-eabihf
|
|
- directory: src/exercises/bare-metal/compass
|
|
target: thumbv7em-none-eabihf
|
|
- directory: src/exercises/bare-metal/rtc
|
|
target: aarch64-unknown-none
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install gcc-aarch64-linux-gnu
|
|
|
|
- name: Install toolchain
|
|
run: rustup target add ${{ matrix.target }}
|
|
|
|
- name: Build Rust code
|
|
working-directory: ${{ matrix.directory }}
|
|
run: cargo build
|
|
|
|
find-languages:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
languages: ${{ steps.find-languages.outputs.languages }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Find languages
|
|
id: find-languages
|
|
shell: python
|
|
run: |
|
|
import os, json, pathlib
|
|
languages = ["en"] + [p.stem for p in pathlib.Path("po").iterdir() if p.suffix == ".po"]
|
|
github_output = open(os.environ["GITHUB_OUTPUT"], "a")
|
|
github_output.write("languages=")
|
|
json.dump(sorted(languages), github_output)
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- find-languages
|
|
strategy:
|
|
matrix:
|
|
language: ${{ fromJSON(needs.find-languages.outputs.languages) }}
|
|
env:
|
|
MDBOOK_BOOK__LANGUAGE: ${{ matrix.language }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Rust cache
|
|
uses: ./.github/workflows/setup-rust-cache
|
|
|
|
- name: Install Gettext
|
|
if: matrix.language != 'en'
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install gettext
|
|
|
|
- name: Install mdbook
|
|
uses: ./.github/workflows/install-mdbook
|
|
|
|
- name: Test ${{ matrix.language }} translation
|
|
if: matrix.language != 'en'
|
|
run: msgfmt --statistics -o /dev/null po/${{ matrix.language }}.po
|
|
|
|
- name: Build course
|
|
run: mdbook build
|
|
|
|
- name: Zip exercise templates
|
|
run: zip --recurse-paths ../html/comprehensive-rust-exercises.zip comprehensive-rust-exercises/
|
|
working-directory: book/exerciser
|
|
|
|
- name: Prepare book for upload
|
|
run: |
|
|
mv book/html book/comprehensive-rust-${{ matrix.language }}
|
|
rm -r book/exerciser
|
|
|
|
# Upload the book now to retain it in case mdbook test fails.
|
|
- name: Upload book
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: comprehensive-rust-${{ matrix.language }}
|
|
path: book/
|
|
|
|
- name: Test code snippets
|
|
run: mdbook test
|