diff options
author | 2022-02-02 23:58:40 +0000 | |
---|---|---|
committer | 2022-02-02 23:58:40 +0000 | |
commit | 70b4d4c765919e1824667e4975a51dc4e3b6d887 (patch) | |
tree | 1a39558a64acb5650eda6ef963519a4128a412a8 | |
parent | 093928142cbecc2a07dbf649abae15e8ed20127a (diff) | |
parent | 33f7a082408ec7b82ea5704fa152c08d10648279 (diff) | |
download | cortex-m-70b4d4c765919e1824667e4975a51dc4e3b6d887.tar.gz cortex-m-70b4d4c765919e1824667e4975a51dc4e3b6d887.tar.zst cortex-m-70b4d4c765919e1824667e4975a51dc4e3b6d887.zip |
Merge #418
418: Exclude c-m-rt from cron test of cortex-m, fixes #417 r=thejpster a=adamgreig
Excludes cortex-m-rt from the plain ci-linux cron CI. We already test cortex-m-rt separate in rt-ci-linux, and plain `cargo test` doesn't work on x86 for cortex-m-rt.
Fixes #417 which is where this week's cron run failed.
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | .github/workflows/cron.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index d765dba..24b547d 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -16,7 +16,7 @@ jobs: toolchain: stable override: true - name: Run tests - run: cargo test --all + run: cargo test --all --exclude cortex-m-rt - uses: imjohnbo/issue-bot@v2 if: failure() with: |