diff --git a/scripts/3rdparty_build.sh b/scripts/3rdparty_build.sh index 807a0feb6f63c..4f2b48c146c15 100644 --- a/scripts/3rdparty_build.sh +++ b/scripts/3rdparty_build.sh @@ -47,12 +47,13 @@ export CONAN_REVISIONS_ENABLED=1 export CXXFLAGS="-Wno-error=address -Wno-error=deprecated-declarations" export CFLAGS="-Wno-error=address -Wno-error=deprecated-declarations" if [[ ! `conan remote list` == *default-conan-local* ]]; then - conan remote add default-conan-local https://milvus01.jfrog.io/artifactory/api/conan/default-conan-local + conan remote add artifactory https://jfrog.milvus.io/artifactory/api/conan/conan-local + fi unameOut="$(uname -s)" case "${unameOut}" in Darwin*) - conan install ${CPP_SRC_DIR} --install-folder conan --build=missing -s compiler=clang -s compiler.version=${llvm_version} -s compiler.libcxx=libc++ -s compiler.cppstd=17 || { echo 'conan install failed'; exit 1; } + conan install ${CPP_SRC_DIR} --install-folder conan --build=missing -s compiler=clang -s compiler.version=${llvm_version} -s compiler.libcxx=libc++ -s compiler.cppstd=17 -r artifactory || { echo 'conan install failed'; exit 1; } ;; Linux*) echo "Running on ${OS_NAME}"