Commit 04777c47 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

updated build script

parent 9dbb0a64
Pipeline #160 passed with stages
in 20 seconds
#!/bin/bash
echo "===================== prepare for installation ====================="
# show where I am
echo " > whoami"
whoami
echo " > uname -a"
......@@ -14,6 +15,7 @@ export CSST_SIMS_C3="/nfsdata/share/csst_simulation_data/Cycle-3-SimuData/"
export CSST_SIMS_C5_2="/nfsdata/share/csst_simulation_data/Cycle-5-SimuData/"
export AUX_DIR="/nfsdata/users/csstpipeline/L1Pipeline/unittests/"
# show Python environment
echo " > which python"
which python
echo " > which pip"
......@@ -22,14 +24,21 @@ echo " > python --version"
python --version
echo "===================== install requirements ====================="
pip install -r requirements.txt
if [ -f "requirements.txt" ]; then
pip install -r requirements.txt
fi
echo "===================== install package ====================="
rm -rf dist
python setup.py build_ext --inplace
#python setup.py install
python setup.py sdist
pip install dist/*.tar.gz --force-reinstall
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
python setup.py sdist
pip install dist/*.tar.gz --force-reinstall --no-deps
fi
echo "===================== show package info ====================="
echo " > pip show $JOB_NAME"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment