forked from ibpsa/modelica-ibpsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (52 loc) · 2.39 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
dist: bionic
language: python
python:
- "3.6"
cache: pip
notifications:
email: false
git:
depth: 10
services:
- docker
- xvfb
env:
# Test matrix for regression tests.
# The documentation is tested using github actions.
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.Experimental\""
## - TEST_ARG="make test-jmodelica PACKAGE=\"IBPSA.Experimental\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.Fluid.{Actuators,BaseClasses,Chillers,Delays,Geothermal,Examples,FMI,FixedResistances}\""
## - TEST_ARG="make test-jmodelica PACKAGE=\"IBPSA.Fluid.{Actuators,BaseClasses,Chillers,Delays,Geothermal,Examples,FMI,FixedResistances}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.Fluid.{HeatExchangers,HeatPumps,Interfaces,MassExchangers,MixingVolumes,Movers,Sensors,Sources,Storage}\""
## - TEST_ARG="make test-jmodelica PACKAGE=\"IBPSA.Fluid.{HeatExchangers,HeatPumps,Interfaces,MassExchangers,MixingVolumes,Movers,Sensors,Sources,Storage}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.ThermalZones\""
## - TEST_ARG="make test-jmodelica PACKAGE=\"IBPSA.ThermalZones\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.{Airflow,BoundaryConditions,Controls}\""
## - TEST_ARG="make test-jmodelica PACKAGE=\"IBPSA.{Airflow,BoundaryConditions,Controls}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.{Media,Utilities}\""
## - TEST_ARG="make test-jmodelica PACKAGE=\"IBPSA.{Media,Utilities}\""
before_install:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- if [[ "$TEST_ARG" == *test-dymola* ]]; then
docker pull "$DOCKER_USERNAME"/travis_ubuntu-1804_dymola:2021-x86_64;
cp IBPSA/Resources/Scripts/travis/dymola/dymola $HOME/bin/;
fi;
## - if [[ "$TEST_ARG" == *test-jmodelica* ]]; then
## docker pull "$DOCKER_USERNAME"/ubuntu-1804_jmodelica_trunk;
## cp IBPSA/Resources/Scripts/travis/jmodelica/jm_ipython.sh $HOME/bin/;
## fi;
# Install dependencies
install:
- pip3 install --upgrade pip setuptools wheel
- pip3 install --only-binary=numpy,scipy,matplotlib numpy==1.13.3 scipy==0.19.1 matplotlib==2.1.0
- pip3 install git+https://github.com/lbl-srg/BuildingsPy@master
# Execute tests
script:
- (cd IBPSA/Resources/Scripts/travis && travis_wait 70 $TEST_ARG)
after_failure:
- |
for ff in `find IBPSA -maxdepth 1 -name '*.log'`; do
echo "*** Content of $ff"
cat $ff
echo "*** End of $ff"
done