diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-12-18 14:48:03 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-12-18 14:48:03 +0100 |
| commit | 95dc7217d9b56fbe6205627749be4c799c84207c (patch) | |
| tree | 5d9cfde8652b120431977e0431d227f2e309274e /.travis.yml | |
| parent | 685d8873007871ae5f72e4187d689b6653d874b2 (diff) | |
| download | PROJ-data-95dc7217d9b56fbe6205627749be4c799c84207c.tar.gz PROJ-data-95dc7217d9b56fbe6205627749be4c799c84207c.zip | |
Add .travis.yml
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9abc6cc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,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" |
