mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-25 19:04:32 +02:00
Rename exercise template directory and archive.
This commit is contained in:
parent
ed4f5b64c4
commit
86d8c4ae54
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -133,7 +133,7 @@ jobs:
|
||||
run: mdbook build
|
||||
|
||||
- name: Zip exercise templates for ${{ matrix.language }} translation
|
||||
run: cd book/exerciser && zip --recurse-paths ../html/exercises.zip exercise-templates/
|
||||
run: cd book/exerciser && zip --recurse-paths ../html/comprehensive-rust-exercises.zip comprehensive-rust-exercises/
|
||||
|
||||
- name: Upload ${{ matrix.language }} translation
|
||||
uses: actions/upload-artifact@v3
|
||||
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
@ -41,7 +41,7 @@ jobs:
|
||||
run: mdbook build -d book
|
||||
|
||||
- name: Zip exercise templates
|
||||
run: cd book/exerciser && zip --recurse-paths ../html/exercises.zip exercise-templates/
|
||||
run: cd book/exerciser && zip --recurse-paths ../html/comprehensive-rust-exercises.zip comprehensive-rust-exercises/
|
||||
|
||||
- name: Build all translations
|
||||
run: |
|
||||
@ -50,7 +50,7 @@ jobs:
|
||||
MDBOOK_BOOK__LANGUAGE=$po_lang \
|
||||
MDBOOK_OUTPUT__HTML__SITE_URL=/comprehensive-rust/$po_lang/ \
|
||||
mdbook build -d book/$po_lang
|
||||
(cd book/$po_lang/exerciser && zip --recurse-paths ../html/exercises.zip exercise-templates/)
|
||||
(cd book/$po_lang/exerciser && zip --recurse-paths ../html/comprehensive-rust-exercises.zip comprehensive-rust-exercises/)
|
||||
mv book/$po_lang/html book/html/$po_lang
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
@ -50,4 +50,4 @@ editable = true
|
||||
"generics/trait-bounds.html" = "traits/trait-bounds.html"
|
||||
|
||||
[output.exerciser]
|
||||
output-directory = "exercise-templates"
|
||||
output-directory = "comprehensive-rust-exercises"
|
||||
|
@ -15,5 +15,12 @@ fn some_more_code() {
|
||||
```
|
||||
````
|
||||
|
||||
It will create a file `book/exerciser/exercise-templates/example/src/main.rs` with the appropriate
|
||||
contents.
|
||||
and mdbook configuration in `book.toml` like:
|
||||
|
||||
```toml
|
||||
[output.exerciser]
|
||||
output-directory = "comprehensive-rust-exercises"
|
||||
```
|
||||
|
||||
It will create a file `book/exerciser/comprehensive-rust-exercises/example/src/main.rs` with the
|
||||
appropriate contents.
|
||||
|
@ -20,8 +20,8 @@ Hints:
|
||||
[nRF52833 datasheet](https://infocenter.nordicsemi.com/pdf/nRF52833_PS_v1.5.pdf) if you want, but
|
||||
it shouldn't be necessary for this exercise.
|
||||
|
||||
Download the [exercise template](../../exercises.zip) and look in the `compass` directory for the
|
||||
following files.
|
||||
Download the [exercise template](../../comprehensive-rust-exercises.zip) and look in the `compass`
|
||||
directory for the following files.
|
||||
|
||||
`src/main.rs`:
|
||||
|
||||
|
@ -4,8 +4,8 @@ The QEMU aarch64 virt machine has a [PL031][1] real-time clock at 0x9010000. For
|
||||
should write a driver for it and use it to print the current time to the serial console. You can use
|
||||
the [`chrono`][2] crate for date/time formatting.
|
||||
|
||||
Download the [exercise template](../../exercises.zip) and look in the `rtc` directory for the
|
||||
following files.
|
||||
Download the [exercise template](../../comprehensive-rust-exercises.zip) and look in the `rtc`
|
||||
directory for the following files.
|
||||
|
||||
`src/main.rs`:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user