-
Notifications
You must be signed in to change notification settings - Fork 42
49 lines (43 loc) · 1.08 KB
/
ci_test_unidock.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Uni-Dock CI/CD
on:
push:
branches:
- '**ci**'
pull_request:
branches:
- main
jobs:
unidock_test:
runs-on: nvidia
container:
image: nvidia/cuda:12.2.0-devel-ubuntu22.04
options: --gpus all
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: install basic packages
run: |
apt-get update
apt-get install -y build-essential cmake libboost-all-dev ninja-build git
- name: build
run: |
cd unidock
mkdir build
cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build .
cmake --install .
cd ../..
- name: validation
run: |
nvidia-smi
unidock --version
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: perform unit-test
run: |
python -m pip install --upgrade pip
pip install pytest>=8.0.0 pytest-cov
pytest unidock/test/ut -vv --doctest-modules --junitxml=junit/test-results.xml --cov --cov-report term