forked from equinor/resdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (62 loc) · 1.58 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: python
python:
- 2.7
- 3.6
os:
- linux
sudo: required
services: docker
env:
global:
- ERT_SHOW_BACKTRACE=1
- MB_PYTHON_VERSION=$TRAVIS_PYTHON_VERSION
matrix:
- TEST_SUITE="-LE SLOW" # Run all tests not labeled as slow
- TEST_SUITE="-L SLOW_1" # Run all tests labeled as SLOW in group 1
- TEST_SUITE="-L SLOW_2" # Run all tests labeled as SLOW in group 2
matrix:
fast_finish: true
include:
- os: osx
language: generic
python: 2.7
env:
- MB_PYTHON_VERSION=2.7
- TEST_SUITE=""
- os: osx
language: generic
python: 3.6
env:
- MB_PYTHON_VERSION=3.6
- TEST_SUITE=""
addons:
apt:
packages:
- liblapack-dev
before_install:
- unset -f pushd
- unset -f popd
- source multibuild/common_utils.sh
- source multibuild/travis_steps.sh
- before_install
install:
- pip install -r requirements.txt
script:
- mkdir build
- pushd build
- cmake .. -DBUILD_TESTS=ON
-DENABLE_PYTHON=ON
-DINSTALL_CWRAP=OFF
-DBUILD_APPLICATIONS=ON
-DINSTALL_ERT_LEGACY=ON
-DERT_USE_OPENMP=ON
-DCMAKE_C_FLAGS='-Werror=all'
-DCMAKE_CXX_FLAGS='-Werror -Wno-unused-result'
- make
- sudo make install
- which python
- export PYTHONPATH="/usr/local/lib/python$MB_PYTHON_VERSION/site-packages:/usr/local/lib/python$MB_PYTHON_VERSION/dist-packages:$PYTHONPATH"
- python -c "import sys; print('\n'.join(sys.path))"
- set -e; python -c "import ecl"; set +e
- ctest --output-on-failure $TEST_SUITE
- popd