Adds a Justfile and a composite action. #28
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: Weekly Canary Build | ||
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 | ||
on: | ||
schedule: | ||
- cron: '0 0 * * Mon' | ||
jobs: | ||
weekly-canary-build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rust-channel: [stable, beta, nightly] | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
with: | ||
cache: exercise-book | ||
channel: ${{ matrix.rust-channel }} | ||
- name: Install mdbook, mdbook-mermaid | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected],[email protected] | ||
- run: just test-mdbook | ||
- run: just build-mdbook | ||
- name: Upload mdbook artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: mdbook-dir | ||
path: exercise-book/book/ | ||
if-no-files-found: error | ||
build-nrf52-code: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rust-channel: [stable, beta, nightly] | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
with: | ||
cache: exercise-book | ||
channel: ${{ matrix.rust-channel }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
with: | ||
channel: ${{ matrix.rust-channel }} | ||
cache: nrf52-code | ||
target: thumbv7em-none-eabihf | ||
- run: just build-nrf52-code |