From a2806b74608af42abeaedf8403fcce60def0230a Mon Sep 17 00:00:00 2001 From: edoapra Date: Tue, 21 Nov 2017 14:49:57 -0800 Subject: [PATCH] first attempt at travis ci. Inspired from https://github.com/jeffhammond/nwchem/blob/master and https://github.com/GlobalArrays/ga --- .travis.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..bab7dfc297 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,37 @@ +sudo: false +language: fortran +os: + - linux +compiler: + - gcc +addons: + apt: + packages: + - gfortran + - gcc + - python-dev + - libopenblas-dev + - libopenmpi-dev + - openmpi-bin + - tcsh + - make + - automake + - libtool + - autoconf + - perl +matrix: +env: == default == + NWCHEM_TOP=$TRAVIS_BUILD_DIR + NWCHEM_TARGET=LINUX64 + NWCHEM_MODULES="dftgrad driver stepper mp2_grad" + USE_MPI=y + BLASOPT="-lopenblas -lpthread -lrt" + BLAS_SIZE=4 + +before_script: + +script: + cd $NWCHEM_TOP/src && + make nwchem_config && + make ; +