From d760316a731c91fec5b40ab3ed15e825346a5efa Mon Sep 17 00:00:00 2001 From: Alexander Korolev Date: Fri, 9 Oct 2020 19:12:30 +0200 Subject: [PATCH] just do not use jmalloc --- Cargo.toml | 1 - appveyor.yml | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0123340..fa1f143 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,6 @@ categories = ["command-line-utilities"] edition = "2018" [features] -default = ["jemalloc"] jemalloc = ["jemallocator"] [dependencies] diff --git a/appveyor.yml b/appveyor.yml index 58be34a..bac7dd4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -44,15 +44,15 @@ install: test_script: # we don't run the "test phase" when doing deploys - if [%APPVEYOR_REPO_TAG%]==[false] ( - cargo build --no-default-features --target %TARGET% && - cargo build --no-default-features --target %TARGET% --release && - cargo test --no-default-features --target %TARGET% && - cargo test --no-default-features --target %TARGET% --release + cargo build --target %TARGET% && + cargo build --target %TARGET% --release && + cargo test --target %TARGET% && + cargo test --target %TARGET% --release ) before_deploy: # TODO Update this to build the artifacts that matter to you - - cargo rustc --no-default-features --target %TARGET% --release --bin hg-git-fast-import -- -C lto + - cargo rustc --target %TARGET% --release --bin hg-git-fast-import -- -C lto - ps: ci\before_deploy.ps1 deploy: