-
Notifications
You must be signed in to change notification settings - Fork 25
/
.travis.yml
40 lines (38 loc) · 881 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
language: python
matrix:
fast_finish: true
include:
- python: 3.9
env:
- JOB="3.9" ENV_FILE="ci/travis-39.yaml"
- python: 3.9
env:
- JOB="3.9 opj 2.4" ENV_FILE="ci/travis-39-opj2p4.yaml"
- python: 3.8
env:
- JOB="3.8" ENV_FILE="ci/travis-38.yaml"
- python: 3.7
env:
- JOB="3.7" ENV_FILE="ci/travis-37.yaml"
- python: 3.7
env:
- JOB="3.7" ENV_FILE="ci/travis-37-no-gdal.yaml"
- python: 3.7
env:
- JOB="3.7 No OPENJPEG" ENV_FILE="ci/travis-37-no-opj.yaml"
before_install:
- echo "before_install"
- sudo apt-get update
- df -h
- pwd
- uname -a
- git --version
- hash -r
install:
- echo "install"
- ci/setup_env.sh
- echo "install done"
script:
- echo "run script"
- ci/run_script.sh
- echo "script done"