"vscode:/vscode.git/clone" did not exist on "f7ef2dd001984e3be35498e41f8f8106ee0e25fa"
Commit fc21ec77 authored by Robert McGibbon's avatar Robert McGibbon
Browse files

reset .travis.yml back

parent 05423d24
...@@ -5,14 +5,21 @@ compiler: ...@@ -5,14 +5,21 @@ compiler:
before_install: before_install:
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -qq libpcre3 libpcre3-dev gromacs - sudo apt-get install -qq libpcre3 libpcre3-dev gromacs
- sudo apt-get install -qq swig doxygen - sudo apt-get install -qq swig doxygen llvm-3.3
- sudo apt-get install -qq python-numpy python-scipy python-nose - sudo apt-get install -qq python-numpy python-scipy python-nose
- sudo apt-get install valgrind llvm-3.3 - export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-3.3
script: script:
- mkdir build; cd build - mkdir build; cd build
- export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-3.3 - cmake -DCMAKE_INSTALL_PREFIX=~/OpenMM -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG="-g -fsanitize=address -fno-omit-frame-pointer -O2" ..
- cmake -DCMAKE_INSTALL_PREFIX=~/OpenMM -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG="-g -fsanitize=address -fno-omit-frame-pointer -O1" .. - make
- make TestCpuSettle - make test
- ./TestCpuSettle - make install
- valgrind ./TestCpuSettle - ls ~/OpenMM/include
\ No newline at end of file - export LD_LIBRARY_PATH=~/OpenMM/lib/
- export OPENMM_LIB_PATH=~/OpenMM/lib/
- export OPENMM_INCLUDE_PATH=~/OpenMM/include/
- cd python
- sudo -E python setup.py install
- cd tests
- nosetests -vv
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment