blob: 3f6a03f6a873d184592305e1be0753be9b61d2e0 (
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-data /tmp)
- (cd /tmp/PROJ-data && ./travis/test.sh)
script:
- echo "done"
after_success:
- echo "done"
|