-
Notifications
You must be signed in to change notification settings - Fork 13
58 lines (54 loc) · 1.89 KB
/
tests.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
50
51
52
53
54
55
56
57
58
name: Run LAMMPS-Python tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
torch-version: [1.11.0]
nequip-branch: ["main"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
env:
TORCH: "${{ matrix.torch-version }}"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python -m pip install --upgrade pip
pip install torch==${TORCH} -f https://download.pytorch.org/whl/cpu/torch_stable.html
pip install pytest
pip install pytest-xdist[psutil]
pip install mkl-include
- name: Install NequIP
env:
NEQUIP: "${{ matrix.nequip-branch }}"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install --upgrade-strategy only-if-needed "https://github.com/mir-group/nequip/archive/${NEQUIP}.zip"
- name: Fetch and build LAMMPS
run: |
mkdir lammps_dir/
cd lammps_dir/
git clone --depth 1 "https://github.com/lammps/lammps"
cd ..
./patch_lammps.sh lammps_dir/lammps/
cd lammps_dir/lammps/
mkdir build/
cd build/
cmake ../cmake -DCMAKE_PREFIX_PATH=`python -c 'import torch;print(torch.utils.cmake_prefix_path)'` -DMKL_INCLUDE_DIR=`python -c "import sysconfig;from pathlib import Path;print(Path(sysconfig.get_paths()[\"include\"]).parent)"`
make -j$(nproc)
echo "LAMMPS in dir"
pwd
ls lmp
cd ../../..
echo "Now in dir"
pwd
- name: Run tests with pytest
run: |
# See https://github.com/pytest-dev/pytest/issues/1075
PYTHONHASHSEED=0 LAMMPS=`pwd`/lammps_dir/lammps/build/lmp pytest -n auto tests/