no need for git clean now with make distclean

This commit is contained in:
gnzlbg 2018-05-02 11:16:51 +02:00
parent a1a0366ee7
commit d2c2fe6d4c
2 changed files with 0 additions and 9 deletions

View File

@ -68,7 +68,6 @@ script:
cd jemalloc
git checkout -b rc1 b8f4c730eff28edee4b583ff5b6ee1fac0f26c27
cd ../..
- ls /project/jemalloc-sys/jemalloc
- cargo install cross
- cross run --target $TARGET --manifest-path systest/Cargo.toml
- export JEMALLOC_SYS_RUN_TESTS=1

View File

@ -73,14 +73,6 @@ fn main() {
let jemalloc_src_dir = src_dir.join("jemalloc");
println!("JEMALLOC_SRC_DIR={:?}", jemalloc_src_dir);
// Clean files from previous run:
let mut cmd = Command::new("git");
cmd.arg("clean")
.arg("-x") // clean ignored files
.arg("-f") // remove files
.current_dir(jemalloc_src_dir.clone());
run(&mut cmd);
// Run autogen:
let autogen = jemalloc_src_dir.join("autogen.sh");
let mut cmd = Command::new("sh");