diff options
| -rw-r--r-- | .github/workflows/build.yml | 3 | ||||
| -rw-r--r-- | xtask/src/main.rs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ad1814..df58bb6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,7 +122,8 @@ jobs: target: - thumbv7m-none-eabi - thumbv6m-none-eabi - - x86_64-unknown-linux-gnu + - thumbv8m.base-none-eabi + - thumbv8m.main-none-eabi toolchain: - nightly steps: diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 1a3d52f..590f093 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -521,7 +521,7 @@ fn package_filter(package: &Package) -> Vec<String> { // TODO Parse Cargo.toml workspace definition instead? let packages: Vec<String> = [ "rtic".to_owned(), - "rtic-macros".to_owned(), + "rtic-arbiter".to_owned(), "rtic-channel".to_owned(), "rtic-common".to_owned(), "rtic-macros".to_owned(), |
