Post symmetrization #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cmdata | |
on: | |
push: | |
paths: | |
- 'tools/cmdata/**' | |
pull_request: | |
paths: | |
- 'tools/cmdata/**' | |
jobs: | |
build-linux-gromacs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install generic packages | |
run: | | |
sudo apt-get update -qq | |
- name: Build gromacs | |
run: | | |
git clone --depth 1 -b release-2023 https://github.com/multi-ego/gromacs.git | |
bash tools/cmdata/patch_gromacs.sh gromacs/ | |
cd gromacs; mkdir build; cd build | |
cmake .. -DGMX_FFT_LIBRARY=fftpack -DBUILD_TESTING=OFF -DGMXAPI=OFF -DGMX_IMD=OFF | |
make -j2 | |
sudo make install | |
- name: Run cmdata test | |
run: | | |
source /usr/local/gromacs/bin/GMXRC | |
cd test; bash run_cmdata.sh; cd .. | |