Skip to content
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

Add benchmark + improve performance #257

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
11 changes: 11 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ jobs:
- name: Install Build Essentials
run: sudo apt-get install build-essential mingw-w64 gcc

- name: Install mongosh binary, mongorestore and mongodump for MongoDB
run: |
wget https://downloads.mongodb.com/compass/mongodb-mongosh_1.8.0_amd64.deb
sudo dpkg -i mongodb-mongosh_1.8.0_amd64.deb
mongosh -h > /dev/null

wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-debian11-x86_64-100.7.0.deb
sudo dpkg -i mongodb-database-tools-debian11-x86_64-100.7.0.deb
mongodump --help > /dev/null
mongorestore --help > /dev/null

- name: Verify versions
run: rustc --version && rustup --version && cargo --version

Expand Down