netcdf-c/.travis.yml

40 lines
657 B
YAML
Raw Normal View History

sudo: false
2015-02-12 05:07:33 +08:00
language: c
compiler:
- gcc
- clang
2015-02-12 05:07:33 +08:00
addons:
apt:
packages:
- libcurl4-openssl-dev
- m4
- wget
- autoconf
- libtool
- gfortran
- git
2015-02-12 05:07:33 +08:00
before_install:
before_script:
2015-02-12 05:07:33 +08:00
###
# Install dependencies from a pre-built binary.
###
- cd $HOME
- wget http://www.unidata.ucar.edu/downloads/netcdf/ftp/travisdeps.tar.bz2
- tar -jxf travisdeps.tar.bz2
- export LD_LIBRARY_PATH=$HOME/usr/lib
- export PATH=$HOME/usr/bin:$PATH
- cd -
- mkdir build
- cd build
- cmake .. -DENABLE_EXTRA_TESTS=ON -DENABLE_HDF4=ON -DCMAKE_PREFIX_PATH=$HOME/usr
2015-04-25 01:28:16 +08:00
2015-02-12 05:07:33 +08:00
script:
- make -j 4
- make test