Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .github/workflows/build-lint-test-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,7 @@ jobs:
sleep 5 # Ensure azurite has fully finished creating the endpoint.
az storage container create -n modelardb --connection-string 'DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;'

# Update Rust.
- name: Rustup Update
run: rustup update
- name: Rustup Add llvm-tools
run: rustup component add llvm-tools-preview
# Install Cargo Tools.
- name: Cargo Install grcov
run: cargo install grcov
- name: Cargo Install machete
Expand Down Expand Up @@ -144,10 +140,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Update Rust.
- name: Rustup Update
run: rustup update

# Build Rust Binaries.
- name: Cargo Build Binaries
run: cargo build --release --jobs 1 --verbose # --jobs 1 reduce resource use.
Expand Down
3 changes: 2 additions & 1 deletion docs/user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ The following commands are for Ubuntu Server. However, equivalent commands shoul

### All

2. Install the latest stable [Rust Toolchain](https://rustup.rs/).
2. Install version 1.97.1 of the [Rust Toolchain](https://rustup.rs/).
- If your use `rustup` it will automatically install the correct toolchain when you run `cargo` commands.
3. Clone the repository: `git clone https://github.com/ModelarData/ModelarDB-RS`
4. Build, test, and run the system using Cargo:
- Debug Build: `cargo build`
Expand Down
4 changes: 4 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[toolchain]
channel = "1.97.1"
components = ["clippy", "llvm-tools-preview"]
profile = "minimal"
Loading