Loading pipelines/build.sh +9 −9 Original line number Diff line number Diff line Loading @@ -29,16 +29,16 @@ if [ -f "requirements.txt" ]; then fi echo "===================== install package =====================" if [ -f "install_local.sh" ]; then sh install_local.sh else #if [ -f "install_local.sh" ]; then # sh install_local.sh #else # default install script rm -rf dist #python setup.py build_ext --inplace #python setup.py install rm -rf dist python setup.py build_ext --inplace python setup.py sdist pip install dist/*.tar.gz --force-reinstall --no-deps fi #fi echo "===================== show package info =====================" echo " > pip show $JOB_NAME" Loading Loading
pipelines/build.sh +9 −9 Original line number Diff line number Diff line Loading @@ -29,16 +29,16 @@ if [ -f "requirements.txt" ]; then fi echo "===================== install package =====================" if [ -f "install_local.sh" ]; then sh install_local.sh else #if [ -f "install_local.sh" ]; then # sh install_local.sh #else # default install script rm -rf dist #python setup.py build_ext --inplace #python setup.py install rm -rf dist python setup.py build_ext --inplace python setup.py sdist pip install dist/*.tar.gz --force-reinstall --no-deps fi #fi echo "===================== show package info =====================" echo " > pip show $JOB_NAME" Loading