Merge pull request #55 from romancardenas/master #99
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: [ staging, trying, master ] | |
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, MRSV is 1.60.0 | |
rust: [nightly, stable, 1.60.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 }} x86_64-unknown-linux-gnu riscv32imac-unknown-none-elf riscv32imc-unknown-none-elf riscv64imac-unknown-none-elf riscv64gc-unknown-none-elf | |
- name: Run CI script for riscv32imac-unknown-none-elf under ${{ matrix.rust }} | |
run: | | |
cargo check --target riscv32imac-unknown-none-elf | |
cargo check --target riscv32imac-unknown-none-elf --features g002 | |
cargo check --target riscv32imac-unknown-none-elf --features virq | |
cargo check --target riscv32imac-unknown-none-elf --features g002,virq | |
cargo check --target riscv32imc-unknown-none-elf | |
cargo check --target riscv32imc-unknown-none-elf --features g002 | |
cargo check --target riscv32imc-unknown-none-elf --features virq | |
cargo check --target riscv32imc-unknown-none-elf --features g002,virq | |
# On macOS and Windows, we at least make sure that the crate builds and links. | |
build-other: | |
strategy: | |
matrix: | |
os: | |
- macOS-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Build crate for host OS | |
run: | | |
cargo build | |
cargo build --features g002 | |
cargo build --features virq | |
cargo build --features g002,virq |