Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torchani
Commits
19a85d8a
You need to sign in or sign up before continuing.
Commit
19a85d8a
authored
Sep 10, 2025
by
limm
Browse files
add jenkins.sh
parent
c160845a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
jenkins.sh
jenkins.sh
+32
-0
No files found.
jenkins.sh
0 → 100755
View file @
19a85d8a
#!/bin/bash
pip
install
-r
test_requirements.txt
set
-e
source
/opt/dtk/env.sh
source
/usr/local/bin/fastpt
-C
echo
"开始编译组件torchani"
python3 setup.py
-v
bdist_wheel
--cuaev
echo
"组件torchani编译完成"
ls
dist/
pip
install
dist/torchani
*
.whl
pip
install
dist/torchani
*
.whl
--force-reinstall
--no-deps
echo
"组件torchani安装完成"
echo
"开始torchani单元测试"
if
command
-v
pytest &> /dev/null
;
then
echo
"pytest 已安装,版本:
$(
pytest
--version
)
"
# 跳过安装
else
echo
"pytest 未安装,正在安装..."
# 使用 pip 安装 (最常见)
pip
install
pytest
fi
pytest
-vs
./tests
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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