Support load firmware from XPI into ILM #42
Workflow file for this run
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
on: | |
push: | |
branches: [ master, 'dev/*' ] | |
pull_request: | |
name: Continuous integration | |
jobs: | |
ci-linux: | |
runs-on: ubuntu-20.04 | |
continue-on-error: ${{ matrix.experimental || false }} | |
strategy: | |
matrix: | |
# All generated code should be running on stable now, MSRV is 1.59.0 | |
rust: [nightly, stable, 1.59.0] | |
include: | |
# Nightly is only for reference and allowed to fail | |
- rust: nightly | |
experimental: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- name: Install all Rust targets for ${{ matrix.rust }} | |
run: rustup target install --toolchain=${{ matrix.rust }} riscv32imac-unknown-none-elf | |
- name: Run cargo check under ${{ matrix.rust }} | |
run: cargo check --target riscv32imac-unknown-none-elf |