Skip to content

Commit

Permalink
just do not use jmalloc
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Oct 9, 2020
1 parent 49b2d5f commit d760316
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ categories = ["command-line-utilities"]
edition = "2018"

[features]
default = ["jemalloc"]
jemalloc = ["jemallocator"]

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d760316

Please sign in to comment.