Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize e2e script #1069

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions benchmark/hdf5/benchmark_hdf5.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ class Benchmark_hdf5 : public Benchmark_base {
assert(false);
}
}

void
parse_ann_test_name() {
auto pos = parse_name_and_dim();
Expand Down
2 changes: 1 addition & 1 deletion ci/E2E-arm.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pipeline {
sh "apt-get install -y libopenblas-openmp-dev libaio-dev libdouble-conversion-dev libevent-dev"
sh "pip3 install ${knowhere_wheel}"
sh "cat requirements.txt | xargs -n 1 pip3 install"
sh "cp -r /home/data/milvus/ann_fbin ."
sh "ln -s /home/data/milvus/ann_fbin ."
sh "pytest -v -m 'L0'"
}
}
Expand Down
2 changes: 1 addition & 1 deletion ci/E2E2-SSE.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pipeline {
sh "apt-get install -y libopenblas-dev libaio-dev libdouble-conversion-dev libevent-dev"
sh "pip3 install ${knowhere_wheel}"
sh "cat requirements.txt | xargs -n 1 pip3 install"
sh "cp -r /home/data/milvus/ann_fbin/ ."
sh "ln -s /home/data/milvus/ann_fbin/ ."
sh "pytest -v -m 'L0'"
}
}
Expand Down
2 changes: 1 addition & 1 deletion ci/E2E2.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pipeline {
sh "apt-get install -y libopenblas-openmp-dev libaio-dev libdouble-conversion-dev libevent-dev"
sh "pip3 install ${knowhere_wheel}"
sh "cat requirements.txt | xargs -n 1 pip3 install"
sh "cp -r /home/data/milvus/ann_fbin/ ."
sh "ln -s /home/data/milvus/ann_fbin/ ."
sh "pytest -v -m 'L0'"
}
}
Expand Down
2 changes: 1 addition & 1 deletion ci/E2E_GPU.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pipeline {
sh "apt-get install -y libopenblas-openmp-dev libaio-dev libdouble-conversion-dev libevent-dev"
sh "pip3 install ${knowhere_wheel}"
sh "cat requirements.txt | xargs -n 1 pip3 install"
sh "cp -r /home/data/milvus/ann_fbin ."
sh "ln -s /home/data/milvus/ann_fbin ."
sh "pytest -v"
}
}
Expand Down