Skip to content

Commit

Permalink
fixed identation
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGanem committed Apr 5, 2022
1 parent 1011b62 commit 400c695
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions .github/workflows/gromacs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,19 @@ 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



runs-on: ubuntu:latest
steps:
#checks out
- uses: actions/checkout@v3
#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
#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 400c695

Please sign in to comment.