diff options
author | 2022-04-12 18:43:50 +0000 | |
---|---|---|
committer | 2022-04-12 18:43:50 +0000 | |
commit | 7035723f1f8eddea2bb65b2ee23f31dc87d3b98f (patch) | |
tree | 81442ceeee23c15e7f79f918a45da35981458d03 | |
parent | b9e18327ea5e620c9205f3d90627eb6504a0a872 (diff) | |
parent | c1e7e4676024477405cf6c4c4dd9fceef29a87a1 (diff) | |
download | cortex-m-7035723f1f8eddea2bb65b2ee23f31dc87d3b98f.tar.gz cortex-m-7035723f1f8eddea2bb65b2ee23f31dc87d3b98f.tar.zst cortex-m-7035723f1f8eddea2bb65b2ee23f31dc87d3b98f.zip |
Merge #429
429: Exclude testsuite from cron, fixes #427 r=therealprof a=adamgreig
Turns out #427 was caused by #355 after all, because the CI workflow was updated to exclude testsuite from its default `cargo test`, but the cron workflow wasn't.
For now this seems like the simplest fix; eventually it might be nice to have cron run the testsuite too (at least in qemu), but really cron's there to catch surprise compilation failures when new Rust versions or new dependency releases come out, so I don't think it's urgent.
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 24b547d..5f38aae 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 --exclude cortex-m-rt + run: cargo test --all --exclude cortex-m-rt --exclude testsuite - uses: imjohnbo/issue-bot@v2 if: failure() with: |