Skip to content

Commit

Permalink
fixed build issue and added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGanem committed Apr 5, 2022
1 parent 11f4132 commit 1011b62
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/gromacs_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: gromacs-build-mo833
on: [push]
jobs:
build-gromacs:
runs-on: ubuntu:latest
steps:
#update and isntal wget and git
- run: apt update && apt-get -y install wget git
#install cmake
- run: apt-get -y install build-essential libssl-dev cmake
#checks out
- uses: actions/checkout@v3
#builds
- run: mkdir build
cd build &&\
cmake .. -DGMX_BUILD_OWN_FFTW=ON -DREGRESSIONTEST_DOWNLOAD=ON &&\
make &&\
make check ;\
sudo make install &&\
source /usr/local/gromacs/bin/GMXRC



0 comments on commit 1011b62

Please sign in to comment.