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
25f65192
Commit
25f65192
authored
Oct 05, 2022
by
BO ZHANG
🏀
Browse files
moved build scripts to csst_cicd
parent
70025824
Pipeline
#175
passed with stages
in 13 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
pipelines/build-in-jenkins.sh
deleted
100644 → 0
View file @
70025824
#!/bin/bash
source
"
$HOME
"
/anaconda3/bin/activate
bash
-c
"
$(
curl
-fsSL
https://csst-tb.bao.ac.cn/code/csst-l1/csst_proto/-/raw/main/pipelines/build.sh
)
"
\ No newline at end of file
pipelines/build.sh
deleted
100644 → 0
View file @
70025824
#!/bin/bash
echo
"===================== prepare for installation ====================="
# show where I am
echo
" > whoami"
whoami
echo
" > uname -a"
uname
-a
echo
" > pwd"
pwd
echo
" > ls -a"
ls
-a
# define environment variables
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"
which pip
echo
" > python --version"
python
--version
echo
"===================== uninstall package ====================="
pip uninstall
-y
"
$JOB_NAME
"
echo
"===================== install requirements ====================="
if
[
-f
"requirements.txt"
]
;
then
pip
install
-r
requirements.txt
status_install_requirements
=
$?
else
status_install_requirements
=
0
fi
echo
"===================== install package ====================="
#if [ -f "install_local.sh" ]; then
# sh install_local.sh
#else
# default install script
#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
status_install
=
$?
#fi
echo
"===================== show package info ====================="
echo
" > pip show
$JOB_NAME
"
pip show
$JOB_NAME
if
[
"
$JOB_NAME
"
!=
"csst_proto"
]
;
then
echo
"===================== download code style tests ====================="
curl
-O
https://csst-tb.bao.ac.cn/code/csst-l1/csst_proto/-/raw/main/pipelines/test_codestyle.py
fi
coverage run
-m
pytest
--import-mode
=
importlib
status_unittest
=
$?
echo
"===================== make coverage ====================="
coverage report
coverage html
zip
-q
-r
htmlcov.zip htmlcov
echo
"===================== importability ====================="
if
[
"
$JOB_NAME
"
!=
"csst_common"
]
;
then
echo
" > try 'from
$JOB_NAME
.top_level_interface import *'"
python
-c
"from
$JOB_NAME
.top_level_interface import *"
status_import
=
$?
if
[
"
$status_import
"
!=
0
]
;
then
echo
"Import failed!"
else
echo
"Import done!"
fi
else
status_import
=
0
fi
# the exit value is determined from unit tests
if
[
"
$status_install_requirements
"
!=
0
]
\
||
[
"
$status_install
"
!=
0
]
\
||
[
"
$status_import
"
!=
0
]
\
||
[
"
$status_unittest
"
!=
0
]
;
then
echo
"===================== TEST SUMMARY ====================="
echo
"Test failed!"
echo
"Install requirements:
$status_install_requirements
"
echo
"Install package:
$status_install
"
echo
"Importability status:
$status_import
"
echo
"Unit test status:
$status_unittest
"
echo
"===================== POST BUILD BELOW ====================="
exit
1
else
echo
"===================== TEST SUMMARY ====================="
echo
"Test passed!"
echo
"Install requirements:
$status_install_requirements
"
echo
"Install package:
$status_install
"
echo
"Importability status:
$status_import
"
echo
"Unit test status:
$status_unittest
"
echo
"===================== POST BUILD BELOW ====================="
exit
0
fi
# In Jenkins:
#!/bin/bash
#sh -c "$(curl -fsSL https://csst-tb.bao.ac.cn/code/csst-l1/csst_proto/-/raw/main/pipelines/build.sh)"
\ No newline at end of file
pipelines/test_codestyle.py
deleted
100644 → 0
View file @
70025824
import
glob
import
unittest
import
pycodestyle
class
TestCodeFormat
(
unittest
.
TestCase
):
def
test_codestyle_conformance
(
self
):
"""Test that we conform to PEP-8."""
style
=
pycodestyle
.
StyleGuide
(
quiet
=
True
,
ignore
=
[
"E121"
,
"E123"
,
"E126"
,
"E226"
,
"E24"
,
"E704"
,
"W503"
,
"W504"
,
"E501"
,
"E722"
])
result
=
style
.
check_files
(
glob
.
glob
(
"./**/*.py"
))
print
(
"================ pycodestyle statistics ================"
)
if
result
.
total_errors
==
0
:
print
(
"Your code style is GREAT!"
)
else
:
for
line
in
result
.
get_statistics
():
print
(
line
)
print
(
"*** Please use the command below to check code yourself!!! ***"
)
print
(
"pycodestyle ./**/*.py --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E501,E722"
)
print
(
"========================================================"
)
self
.
assertEqual
(
result
.
total_errors
,
0
,
"Found code style errors (and warnings)."
)
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