Use published derive-mmio. #1342
This file contains 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: Build sample material | |
# Runs CI on pushing tags and pulls, but not both. Since we have branch protection on, these are our only cases to handle. | |
on: | |
push: | |
tags: | |
- '*' | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always # We want colors in our CI output | |
CARGO_INCREMENTAL: 0 # Don't waste time writing out incremental build files | |
CARGO_PROFILE_TEST_DEBUG: 0 # These are thrown away anyways, don't produce them | |
jobs: | |
build-slides: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected],[email protected] | |
- name: Add mdslides | |
run: | | |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ferrous-systems/mdslides/releases/download/v0.6.1/mdslides-installer.sh | sh | |
- name: Add graphviz | |
run: | | |
sudo apt-get update -y && sudo apt-get install -y graphviz | |
# A `minimal` profile saves a couple seconds from not downloading `clippy` or `rustdocs` and friends | |
- name: Update Rust | |
run: | | |
rustup set profile minimal | |
rustup update stable --no-self-update | |
- name: Find slug name | |
run: | | |
slug=$(./describe.sh "${GITHUB_REF}") | |
echo "Building with slug '${slug}'" | |
echo "slug=${slug}" >> "${GITHUB_ENV}" | |
- name: Build book-and-slides | |
run: | | |
cd ./training-slides && ./build.sh | |
- name: Test all cheatsheets | |
run: | | |
cargo xtask test-all-cheatsheets --locked | |
- name: Assemble Artifacts | |
run: | | |
echo "Making ./rust-training-${{ env.slug }}..." | |
mkdir -p ./rust-training-${{ env.slug }} | |
mv ./training-slides/slides ./rust-training-${{ env.slug }}/training-slides-presentation | |
mv ./training-slides/book ./rust-training-${{ env.slug }}/training-slides-book | |
cp -r ./example-code ./rust-training-${{ env.slug }} | |
echo "Compressing ./rust-training-${{ env.slug }}.zip..." | |
zip -r ./rust-training-${{ env.slug }}.zip ./rust-training-${{ env.slug }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{success()}} | |
with: | |
name: Slides | |
if-no-files-found: error | |
path: | | |
./rust-training-*/ | |
- name: Create and Upload Release | |
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/') | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: ./rust-training-${{ env.slug }}.zip | |
build-examples-ferrocene: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Critical Up | |
run: | | |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ferrocene/criticalup/releases/download/v1.1.0/criticalup-installer.sh | sh | |
- name: Find slug name | |
run: | | |
slug=$(./describe.sh "${GITHUB_REF}") | |
echo "Building with slug '${slug}'" | |
echo "slug=${slug}" >> "${GITHUB_ENV}" | |
- name: Build example code | |
env: | |
CRITICALUP_TOKEN: ${{ secrets.CRITICALUP_TOKEN }} | |
run: | | |
cd ./example-code && ./build-ferrocene.sh | |
- name: Assemble Artifacts | |
run: | | |
echo "Making ./rust-training-${{ env.slug }}..." | |
mkdir -p ./rust-training-${{ env.slug }} | |
cp -r ./example-code ./rust-training-${{ env.slug }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{success()}} | |
with: | |
name: Ferrocene Examples | |
if-no-files-found: error | |
path: | | |
./rust-training-*/ | |
build-examples: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add Rust Targets and Tools | |
run: | | |
rustup target add thumbv7em-none-eabihf | |
rustup target add thumbv7em-none-eabi | |
rustup target add aarch64-unknown-none | |
rustup component add llvm-tools-preview | |
rustup component add rust-src | |
- name: Find slug name | |
run: | | |
slug=$(./describe.sh "${GITHUB_REF}") | |
echo "Building with slug '${slug}'" | |
echo "slug=${slug}" >> "${GITHUB_ENV}" | |
- name: Build example code | |
run: | | |
cd ./example-code && ./build.sh | |
- name: Assemble Artifacts | |
run: | | |
echo "Making ./rust-training-${{ env.slug }}..." | |
mkdir -p ./rust-training-${{ env.slug }} | |
cp -r ./example-code ./rust-training-${{ env.slug }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{success()}} | |
with: | |
name: Examples | |
if-no-files-found: error | |
path: | | |
./rust-training-*/ | |
build-windows-examples: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust | |
run: | | |
rustup update stable | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build FFI Example | |
run: | | |
cd example-code\native\ffi\use-rust-in-c\windows-example | |
msbuild.exe windows-example.sln /p:Configuration=Debug | |
.\x64\Debug\windows-example.exe | |
msbuild.exe windows-example.sln /p:Configuration=Release | |
.\x64\Release\windows-example.exe |