mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
CI: Let xtask running the different targets
This commit is contained in:
parent
748ab7de95
commit
84f5bca9d3
1 changed files with 7 additions and 9 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -119,11 +119,6 @@ jobs:
|
||||||
- rtic-macros
|
- rtic-macros
|
||||||
- rtic-monotonics
|
- rtic-monotonics
|
||||||
- rtic-time
|
- rtic-time
|
||||||
target:
|
|
||||||
- thumbv7m-none-eabi
|
|
||||||
- thumbv6m-none-eabi
|
|
||||||
- thumbv8m.base-none-eabi
|
|
||||||
- thumbv8m.main-none-eabi
|
|
||||||
toolchain:
|
toolchain:
|
||||||
- nightly
|
- nightly
|
||||||
steps:
|
steps:
|
||||||
|
@ -132,11 +127,14 @@ jobs:
|
||||||
|
|
||||||
- name: Install Rust ${{ matrix.toolchain }}
|
- name: Install Rust ${{ matrix.toolchain }}
|
||||||
run: |
|
run: |
|
||||||
rustup set profile minimal
|
|
||||||
rustup override set ${{ matrix.toolchain }}
|
rustup override set ${{ matrix.toolchain }}
|
||||||
|
|
||||||
- name: Configure Rust target (${{ matrix.target }})
|
- name: Configure Rust target (v6, v7, v8.b v8.m)
|
||||||
run: rustup target add ${{ matrix.target }}
|
run: |
|
||||||
|
rustup target add thumbv7m-none-eabi
|
||||||
|
rustup target add thumbv6m-none-eabi
|
||||||
|
rustup target add thumbv8m.base-none-eabi
|
||||||
|
rustup target add thumbv8m.main-none-eabi
|
||||||
|
|
||||||
- name: Fail on warnings
|
- name: Fail on warnings
|
||||||
run: sed -i 's,//deny_warnings_placeholder_for_ci,#![deny(warnings)],' ${{ matrix.package }}/src/lib.rs
|
run: sed -i 's,//deny_warnings_placeholder_for_ci,#![deny(warnings)],' ${{ matrix.package }}/src/lib.rs
|
||||||
|
@ -144,7 +142,7 @@ jobs:
|
||||||
- name: Cache Dependencies
|
- name: Cache Dependencies
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
|
||||||
- run: cargo xtask --verbose --target=${{ matrix.target }} check ${{ matrix.package }}
|
- run: cargo xtask --verbose check ${{ matrix.package }}
|
||||||
|
|
||||||
# Clippy
|
# Clippy
|
||||||
clippyrtic:
|
clippyrtic:
|
||||||
|
|
Loading…
Reference in a new issue