forked from ibpsa/modelica-ibpsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (34 loc) · 1.44 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
language: python
python:
- "2.7"
cache: pip
notifications:
email: false
git:
depth: 10
services:
- docker
env:
- TEST_ARG="make test-documentation test-autogenerated-files"
- TEST_ARG="make test-dymola PACKAGE=IBPSA.Experimental"
- TEST_ARG="make test-dymola PACKAGE=IBPSA.Fluid.{Actuators,BaseClasses,Chillers,Delays,Examples,FMI,FixedResistances}"
- TEST_ARG="make test-dymola PACKAGE=IBPSA.Fluid.{HeatExchangers,HeatPumps,Interfaces,MassExchangers,MixingVolumes,Movers,Sensors,Sources,Storage}"
- TEST_ARG="make test-dymola PACKAGE=IBPSA.ThermalZones"
- TEST_ARG="make test-dymola PACKAGE=IBPSA.{Airflow,BoundaryConditions,Controls}"
- TEST_ARG="make test-dymola PACKAGE=IBPSA.{Media,Utilities}"
before_install:
- sudo cp IBPSA/Resources/Scripts/travis/usr/local/bin/dymola /usr/local/bin/
- sudo chmod +x /usr/local/bin/dymola
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
- docker pull "$DOCKER_USERNAME"/travis_ubuntu-1604_dymola-2017fd01-x86-64
# Install dependencies
# For sphinx, we need to install specific package versions, otherwise
# the html output may have small formatting differences which causes
# the test to fail
install:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy,matplotlib numpy scipy matplotlib
- pip install git+https://github.com/lbl-srg/BuildingsPy@master
# Execute tests
script:
- (cd IBPSA/Resources/Scripts/travis && travis_wait 70 $TEST_ARG)