mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-26 03:55:07 +08:00
Merge pull request #674 from meilisearch/fix-windows-ci
Fix the Windows CI
This commit is contained in:
commit
e9c5928fd3
4
.github/workflows/publish-binaries.yml
vendored
4
.github/workflows/publish-binaries.yml
vendored
@ -20,8 +20,8 @@ jobs:
|
|||||||
artifact_name: meilisearch
|
artifact_name: meilisearch
|
||||||
asset_name: meilisearch-macos-amd64
|
asset_name: meilisearch-macos-amd64
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
artifact_name: meilisearch
|
artifact_name: meilisearch.exe
|
||||||
asset_name: meilisearch-windows-amd64
|
asset_name: meilisearch-windows-amd64.exe
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: hecrj/setup-rust-action@master
|
- uses: hecrj/setup-rust-action@master
|
||||||
|
@ -44,12 +44,14 @@ zerocopy = "0.3.0"
|
|||||||
assert_matches = "1.3.0"
|
assert_matches = "1.3.0"
|
||||||
criterion = "0.3.1"
|
criterion = "0.3.1"
|
||||||
csv = "1.1.3"
|
csv = "1.1.3"
|
||||||
jemallocator = "0.3.2"
|
|
||||||
rustyline = { version = "6.0.0", default-features = false }
|
rustyline = { version = "6.0.0", default-features = false }
|
||||||
structopt = "0.3.12"
|
structopt = "0.3.12"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
termcolor = "1.1.0"
|
termcolor = "1.1.0"
|
||||||
|
|
||||||
|
[target.'cfg(unix)'.dev-dependencies]
|
||||||
|
jemallocator = "0.3.2"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "search_benchmark"
|
name = "search_benchmark"
|
||||||
harness = false
|
harness = false
|
||||||
|
@ -16,7 +16,7 @@ use meilisearch_core::{Database, DatabaseOptions, Highlight, ProcessedUpdateResu
|
|||||||
use meilisearch_core::settings::Settings;
|
use meilisearch_core::settings::Settings;
|
||||||
use meilisearch_schema::FieldId;
|
use meilisearch_schema::FieldId;
|
||||||
|
|
||||||
// #[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
#[global_allocator]
|
#[global_allocator]
|
||||||
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user