mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
19 lines
398 B
YAML
19 lines
398 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
before_install:
|
|
# Get CMake >=2.8.8, HDF5 >= 1.8.6
|
|
# - sudo add-apt-repository -y ppa:amcg/netcdf-parallel
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y -qq libcurl4-openssl-dev m4 wget autoconf libtool clang
|
|
|
|
before_script:
|
|
- autoreconf -if
|
|
- ./configure --disable-netcdf-4
|
|
|
|
script:
|
|
- make
|
|
- LD_LIBRARY_PATH=/usr/local/lib make check
|