-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 'Add clippy CI, fix or ignore warnings where appropriate' from …
…Preston Thorpe There is no semantic changes in this PR, the clippy command came from @pereman2's suggestion in #542 There was more to fix than I previously thought. I originally set out to refactor out some of the logic in `vdbe::step`, but with some actual semantic changes. That file: `vdbe/mod.rs` is so full that it required moving the `Insn` enum to another file, so I figured I would just put some non-semantic changes all together so it's easier to review and get that done first... and figured I'd fix some clippy warnings while I was at it. Also adjusted the actions to `checkout/@v3`. The project is obviously so early that there are going to be a decent amount of things like unused fields or methods, which is why I was originally not really pro clippy.. but seeing how many genuinely good improvements it recommended, I think it's probably the right way to go. Closes #563
- Loading branch information
Showing
91 changed files
with
9,168 additions
and
2,586 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
## 0.0.10 - 2024-12-18 | ||
|
||
### Added | ||
|
||
|
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Performance Testing | ||
|
||
## Mobibench | ||
|
||
1. Clone the source repository of Mobibench fork for Limbo: | ||
|
||
```console | ||
git clone [email protected]:penberg/Mobibench.git | ||
``` | ||
|
||
2. Change `LIBS` in `shell/Makefile` to point to your Limbo source repository. | ||
|
||
3. Build Mobibench: | ||
|
||
```console | ||
cd shell && make | ||
``` | ||
|
||
4. Run Mobibench: | ||
|
||
```console | ||
./mobibench -p <benchmark-directory> -n 1000 -d 0 | ||
``` |
This file contains 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
Oops, something went wrong.