Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
csst_proto
Commits
04777c47
Commit
04777c47
authored
Sep 25, 2022
by
BO ZHANG
🏀
Browse files
updated build script
parent
9dbb0a64
Pipeline
#160
passed with stages
in 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pipelines/build.sh
View file @
04777c47
#!/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
"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment