From 6dc6a5d874ef9248e6e0308865a3a303cbfd6116 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Mon, 14 Nov 2022 17:17:51 +0100 Subject: [PATCH 1/2] Force using vendored version of LMDB - don't use lmdb master3 branch anymore --- milli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 72e31f6c5..6867edb79 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -18,7 +18,7 @@ fst = "0.4.7" fxhash = "0.2.1" geoutils = "0.5.1" grenad = { version = "0.4.3", default-features = false, features = ["tempfile"] } -heed = { git = "https://github.com/meilisearch/heed", branch = "lmdb-master-3", default-features = false, features = ["lmdb", "sync-read-txn"] } +heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.4", default-features = false, features = ["lmdb", "sync-read-txn"] } json-depth-checker = { path = "../json-depth-checker" } levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] } memmap2 = "0.5.7" From 87576cf26c2baa5a0a185cb54a319fda863d362c Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Tue, 15 Nov 2022 10:25:02 +0100 Subject: [PATCH 2/2] Perform cargo check on the release artifacts --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f7acfbebd..b0d15a6e0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -41,7 +41,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --workspace --all-targets + args: --workspace --all-targets --release - name: Run cargo test uses: actions-rs/cargo@v1 with: