blob: 9abc6cc37fdb1ef9b0ec2f8e2e4f75180dbf3db4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This is the config file for Travis-ci.org
sudo: required
# Avoid consuming our GitHub LFS quota
git:
lfs_skip_smudge: true
before_install:
- sudo apt-get update
- sudo apt-get install cmake make zip unzip
install:
# Travis build directory includes /build/, which is a pattern we exclude
# in our 'make dist' target...
- (cd ..; mv proj-datumgrid-geotiff /tmp)
- (cd /tmp/proj-datumgrid-geotiff && ./travis/test.sh)
script:
- echo "done"
after_success:
- echo "done"
|