Skip to content

Commit

Permalink
added sudo to git actions clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGanem committed Apr 6, 2022
1 parent 8ea267b commit f0496d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gromacs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
#checks out
- uses: actions/checkout@v3
#update and isntal wget and git
- run: apt update && apt-get -y install wget git
- run: sudo apt update && sudo apt-get -y install wget git
#install cmake
- run: apt-get -y install build-essential libssl-dev cmake
- run: sudo apt-get -y install build-essential libssl-dev cmake
#build
- 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
- run: mkdir build && cd build && sudo cmake .. -DGMX_BUILD_OWN_FFTW=ON -DREGRESSIONTEST_DOWNLOAD=ON && sudo make && sudo make check ; sudo make install && sudo source /usr/local/gromacs/bin/GMXRC

0 comments on commit f0496d9

Please sign in to comment.