-
Notifications
You must be signed in to change notification settings - Fork 297
ci: remove macos from PR test suite #5142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CodSpeed Performance ReportMerging #5142 will improve performances by 20.1%Comparing Summary
Benchmarks breakdown
Footnotes |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #5142 +/- ##
==========================================
+ Coverage 71.90% 74.27% +2.37%
==========================================
Files 953 955 +2
Lines 130550 123001 -7549
==========================================
- Hits 93868 91361 -2507
+ Misses 36682 31640 -5042
🚀 New features to boost your workflow:
|
venkateshdb
added a commit
to venkateshdb/Daft
that referenced
this pull request
Sep 6, 2025
We currently use MacOS to run unit tests in PRs because we had an issue with getting Rust code coverage in Ubuntu 22.04. The latest Rust toolchain no longer has this issue, so this PR updates the rust toolchain to the latest nightly and moves the code coverage tests to Ubuntu. The vast majority of the diff here is just linting and lifetime fixes due to the upgrade to the latest nightly Rust + 2024 edition. The rest of the changes are as follows: - moving the code coverage tests in `.github/workflows/pr-test-suite.yml` to Ubuntu as described above - it was failing due to out of disk space so I also added a disk space remover action - update our Rust versions in `rust-toolchain.toml` and `Cargo.toml` - use `hashbrown::HashMap` instead of `std::HashMap` because `raw_entry_mut` was removed from the standard library Eventual-Inc#3801 - [x] Documented in API Docs (if applicable) - [x] Documented in User Guide (if applicable) - [x] If adding a new documentation page, doc is added to `docs/mkdocs.yml` navigation - [x] Documentation builds and is formatted properly (tag @/ccmao1130 for docs review)
venkateshdb
added a commit
to venkateshdb/Daft
that referenced
this pull request
Sep 6, 2025
We currently use MacOS to run unit tests in PRs because we had an issue with getting Rust code coverage in Ubuntu 22.04. The latest Rust toolchain no longer has this issue, so this PR updates the rust toolchain to the latest nightly and moves the code coverage tests to Ubuntu. The vast majority of the diff here is just linting and lifetime fixes due to the upgrade to the latest nightly Rust + 2024 edition. The rest of the changes are as follows: - moving the code coverage tests in `.github/workflows/pr-test-suite.yml` to Ubuntu as described above - it was failing due to out of disk space so I also added a disk space remover action - update our Rust versions in `rust-toolchain.toml` and `Cargo.toml` - use `hashbrown::HashMap` instead of `std::HashMap` because `raw_entry_mut` was removed from the standard library Eventual-Inc#3801 - [x] Documented in API Docs (if applicable) - [x] Documented in User Guide (if applicable) - [x] If adding a new documentation page, doc is added to `docs/mkdocs.yml` navigation - [x] Documentation builds and is formatted properly (tag @/ccmao1130 for docs review)
4 tasks
kevinzwang
added a commit
that referenced
this pull request
Sep 9, 2025
## Changes Made Follow-up to #5142 to add the mac tests back for commits on the main branch. ## Related Issues <!-- Link to related GitHub issues, e.g., "Closes #123" --> ## Checklist - [ ] Documented in API Docs (if applicable) - [ ] Documented in User Guide (if applicable) - [ ] If adding a new documentation page, doc is added to `docs/mkdocs.yml` navigation - [ ] Documentation builds and is formatted properly (tag @/ccmao1130 for docs review)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes Made
We currently use MacOS to run unit tests in PRs because we had an issue with getting Rust code coverage in Ubuntu 22.04. The latest Rust toolchain no longer has this issue, so this PR updates the rust toolchain to the latest nightly and moves the code coverage tests to Ubuntu.
The vast majority of the diff here is just linting and lifetime fixes due to the upgrade to the latest nightly Rust + 2024 edition. The rest of the changes are as follows:
.github/workflows/pr-test-suite.yml
to Ubuntu as described aboverust-toolchain.toml
andCargo.toml
hashbrown::HashMap
instead ofstd::HashMap
becauseraw_entry_mut
was removed from the standard libraryRelated Issues
#3801
Checklist
docs/mkdocs.yml
navigation