diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-04-23 19:50:44 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-23 19:50:44 +0000 |
| commit | df3d5a5e2ed8e410117709613ec2da756743321e (patch) | |
| tree | ff36971bb2486512215a40160d1f6d787fefa1d6 /xtask/src | |
| parent | 9b15b4756a1456739d72a00e0184eff8702a6ab4 (diff) | |
| parent | 02215b69726526e2bb9b663243ed12312b25a97f (diff) | |
Merge #745
745: Check rtic-monotonics with eh-async enabled r=korken89 a=datdenkikniet
`@korken89` discovered that the embedded-hal-async stuff had been broken for a longer time. This should've been caught by CI, but we don't test it with this feature enabled. This PR fixes that.
Co-authored-by: datdenkikniet <jcdra1@gmail.com>
Diffstat (limited to 'xtask/src')
| -rw-r--r-- | xtask/src/argument_parsing.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/xtask/src/argument_parsing.rs b/xtask/src/argument_parsing.rs index 05d0ae4..2e1eef4 100644 --- a/xtask/src/argument_parsing.rs +++ b/xtask/src/argument_parsing.rs @@ -64,18 +64,18 @@ impl Package { &["cortex-m-systick", "rp2040", "nrf52840"][..] } else { &[ - "cortex-m-systick", - "cortex-m-systick,systick-100hz", - "cortex-m-systick,systick-10khz", - "rp2040", - "nrf52810", - "nrf52811", - "nrf52832", - "nrf52833", - "nrf52840", - "nrf5340-app", - "nrf5340-net", - "nrf9160", + "cortex-m-systick,embedded-hal-async", + "cortex-m-systick,systick-100hz,embedded-hal-async", + "cortex-m-systick,systick-10khz,embedded-hal-async", + "rp2040,embedded-hal-async", + "nrf52810,embedded-hal-async", + "nrf52811,embedded-hal-async", + "nrf52832,embedded-hal-async", + "nrf52833,embedded-hal-async", + "nrf52840,embedded-hal-async", + "nrf5340-app,embedded-hal-async", + "nrf5340-net,embedded-hal-async", + "nrf9160,embedded-hal-async", ][..] }; |
