From 566ef2daac087cae744c6871650241e558b04ce5 Mon Sep 17 00:00:00 2001 From: jiangxinglei Date: Thu, 30 May 2024 12:34:16 +0800 Subject: [PATCH] rm cache test --- manager | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manager b/manager index ac96aa5..c38cea0 100755 --- a/manager +++ b/manager @@ -66,6 +66,7 @@ start_build(){ # [[ ${DEBUG-} != true ]] || extra_opts+=(--sandbox_debug) bazel clean --expunge bazel build --spawn_strategy=standalone "${extra_opts[@]}" -c opt //core:_pywrap_tn.so + start_copy_libs } only_build(){ @@ -105,7 +106,7 @@ start_create_dist(){ [[ ${NEED_PREPARE_ENV} == true ]] && _prepare_mamba_env [[ ${NEED_ACTIVATE_ENV} == true ]] && _activate_env rm -rf dist/* || true - start_copy_libs + #start_copy_libs [[ $# > 0 ]] && export TN_VERSION=$1 PY_VERSION=$(python -c "import sys; print('cp' + ''.join(map(str, sys.version_info[:2])))") python setup.py bdist_wheel --plat-name manylinux2010_x86_64 --python-tag ${PY_VERSION}