remove redundant Travis CI

This commit is contained in:
Krishna Vedala 2020-05-30 14:40:51 -04:00
parent 5ea4194fbc
commit 1345f575b5
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
language: cpp
os: linux
compiler:
- gcc
- clang
before_install:
- test -n $CC && unset CC
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libgomp1
# - gcc-6
script:
- export OMP_NUM_THREADS=2
- export LD_LIBRARY_PATH=$(if [[ $CXX == "clang++" ]]; then echo -n '/usr/local/clang/lib'; fi)
- mkdir build
- cd build
- cmake .. -DUSE_OPENMP=OFF
- make
- rm -rf *
- cmake .. -DUSE_OPENMP=ON
- make