Skip to content

Commit

Permalink
Clean up the travis logs
Browse files Browse the repository at this point in the history
  • Loading branch information
leeping committed Jan 28, 2018
1 parent 8b3567b commit 9595d0e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,29 +49,30 @@ install:

# Gromacs (from Bioconda)
- wget ftp://ftp.gromacs.org/pub/gromacs/gromacs-4.6.7.tar.gz
- tar xvzf gromacs-4.6.7.tar.gz
- echo "Extracting Gromacs - log suppressed.."
- tar xvzf gromacs-4.6.7.tar.gz &> untar.log
- cd gromacs-4.6.7
- mkdir build_d
- cd build_d
# Build double precision version
- cmake .. -DCMAKE_INSTALL_PREFIX=/home/travis/opt/gromacs/4.6.7 -DGMX_DOUBLE=ON -DGMX_GPU=OFF -DGMX_BUILD_OWN_FFTW=ON
- echo "Building Gromacs double precision - log suppressed.."
- echo "Building Gromacs double precision - logs suppressed..."
- cmake .. -DCMAKE_INSTALL_PREFIX=/home/travis/opt/gromacs/4.6.7 -DGMX_DOUBLE=ON -DGMX_GPU=OFF -DGMX_BUILD_OWN_FFTW=ON &> config.log
- make -j 2 &> make.log
- make install
- make install &> install.log
- cd ..
- mkdir build_s
- cd build_s
# Build double precision version
- cmake .. -DCMAKE_INSTALL_PREFIX=/home/travis/opt/gromacs/4.6.7 -DGMX_DOUBLE=OFF -DGMX_GPU=OFF -DGMX_BUILD_OWN_FFTW=ON
- echo "Building Gromacs single precision - log suppressed.."
- cmake .. -DCMAKE_INSTALL_PREFIX=/home/travis/opt/gromacs/4.6.7 -DGMX_DOUBLE=OFF -DGMX_GPU=OFF -DGMX_BUILD_OWN_FFTW=ON &> config.log
- make -j 2 &> make.log
- make install
- make install &> install.log
- cd ../..
- . /home/travis/opt/gromacs/4.6.7/bin/GMXRC.bash

# Tinker binaries
- wget https://dasher.wustl.edu/tinker/downloads/bin-linux64-8.2.1.tar.gz -O tinker.tar.gz
- tar xvzf tinker.tar.gz
- tar xvzf tinker.tar.gz &> untar.log
- mkdir -p $HOME/opt/tinker/8.2.1
- mv bin-linux64 $HOME/opt/tinker/8.2.1/bin
- export PATH="$HOME/opt/tinker/8.2.1/bin:$PATH"
Expand Down

0 comments on commit 9595d0e

Please sign in to comment.