forked from dstndstn/astrometry.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (34 loc) · 877 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Travis-CI.org build script
# use the new containerized infrastructure
sudo: false
language: c
compiler:
- gcc
- clang
# Apparently the wcslib version they have (4.8.3) doesn't use pkg-config
# And netpbm include files are right in /usr/include, not in /usr/include/netpbm
script:
- export WCSLIB_INC="-I/usr/include/wcslib-4.8.3"
- export WCSLIB_LIB="-lwcs"
- make
- make py
- make extra
- make test
- (cd util; ./test)
- (cd blind; ./test)
- (cd libkd; ./test)
# install:
# - sudo apt-get update -qq
# - sudo apt-get install -y libnetpbm10 libnetpbm10-dev wcslib-dev libcfitsio3 libcfitsio3-dev python-numpy swig gsl-bin libgsl0-dev
addons:
apt:
packages:
- libnetpbm10
- libnetpbm10-dev
- wcslib-dev
- libcfitsio3
- libcfitsio3-dev
- python-numpy
- swig
- gsl-bin
- libgsl10-dev